[gulp] move tasks to gulp-haxetool package

This commit is contained in:
2018-04-03 15:12:53 +03:00
parent 92a2628e90
commit 836eebaf11
15 changed files with 34 additions and 967 deletions

View File

@@ -1,10 +1,10 @@
const gulp = require('gulp');
const yargs = require('yargs');
const Haxe = require('../tasks/haxe');
const FlashPlayer = require('../tasks/flashplayer');
const Haxe = require('gulp-haxetool').Haxe;
const FlashPlayer = require('gulp-haxetool').FlashPlayer;
const version = require('./version');
const prepare = require('./prepare');
const debug = require('../tasks/debug');
const debug = require('./debug');
const build = (platform) => function build() {