From 4c8181b3ea4cb934eb2a451f2090e588fdd74cf4 Mon Sep 17 00:00:00 2001 From: shmyga Date: Thu, 26 Apr 2018 10:24:58 +0300 Subject: [PATCH] [gulp] use gulp-haxetool from npm --- gulpfile.js | 7 +++---- package.json | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 1424f0f..44b32f1 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -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 diff --git a/package.json b/package.json index 60c9e2c..0a5f4d9 100755 --- a/package.json +++ b/package.json @@ -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",