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

View File

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