[build] remove deprecated gulp-utils
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
const gutil = require('gulp-util');
|
||||
const child_process = require('child_process');
|
||||
const async = require('async');
|
||||
const col = gutil.colors;
|
||||
const Promise = require("bluebird");
|
||||
const colors = require('ansi-colors');
|
||||
const log = require('fancy-log');
|
||||
|
||||
|
||||
const TAG = col.green('[exec]');
|
||||
const TAG = colors.green('[exec]');
|
||||
|
||||
const queue = async.queue((task, done) => {
|
||||
//gutil.log(TAG, col.magenta(task.command));
|
||||
//log(TAG, colors.magenta(task.command));
|
||||
//process.chdir(task.dir);
|
||||
child_process.exec(task.command, {cwd: task.dir, maxBuffer: 1024 * 5000}, (err, stdout, stderr) => {
|
||||
if (err) {
|
||||
|
||||
Reference in New Issue
Block a user