以下记者似乎与gulp-shell
无关。
...
var shell = require('gulp-shell');
...
var mReporter = {
reporter: function (errors) {
shell.task([
'echo "echo hello"'
]);
console.log("console.log hello");
}
};
...
正在显示 console.log hello
,但echo hello
不是?
答案 0 :(得分:0)
找到了解决方法。
var shell = require('gulp-shell');
...
gulp.task('mTask', shell.task([
'echo "echo hello"'
]));
...
var mReporter = {
reporter: function (errors) {
gulp.start('mTask');
console.log("console.log hello");
}
};
...