自定义gulp-jshint记者没有使用gulp-shell

时间:2015-03-23 01:27:08

标签: gulp

以下记者似乎与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不是?

1 个答案:

答案 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");
    }
};
...