[gulp] use gulp-haxetool from npm

This commit is contained in:
2018-04-26 10:24:58 +03:00
parent 61852ab47e
commit 4c8181b3ea
2 changed files with 4 additions and 5 deletions

View File

@@ -29,7 +29,6 @@ exports.install = function install() {
* ToDo:
* windows target
* window exe package (innosetup)
* flash html wrapper
*/
const config = new Project.Config({
@@ -68,7 +67,7 @@ const client = new Project(
assets: ['src/client/resources'],
main: 'ru.m.tankz.Client',
})
).bind(module, gulp);
).bind(module);
/**
* editor
@@ -83,7 +82,7 @@ const editor = new Project(
main: 'ru.m.tankz.editor.Editor',
meta: {filename: 'editor'}
})
).bind(module, gulp);
).bind(module);
/**
* server
@@ -96,7 +95,7 @@ const server = new Project(
sources: ['src/server/haxe'],
main: 'ru.m.tankz.server.Server',
})
).bind(module, gulp);
).bind(module);
/**
* default

View File

@@ -6,7 +6,7 @@
"dateformat": "^3.0.3",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-haxetool": "file:../../gulp-haxetool"
"gulp-haxetool": "^0.0.8"
},
"haxeDependencies": {
"lime": "6.0.1",