我正在使用 gulp 并且相当新,我的 gulp jshint 任务如下:
gulp.task('jshint', ()=>{
return gulp.src([`${root}/**/*.js`])
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-stylish'))
.pipe(jshint.reporter('gulp-jshint-html-reporter', { filename: 'jshint-output.html' }))
.pipe(jshint.reporter('fail'));
});
每次运行构建时,该任务都需要 5 分钟。有没有办法加快这个速度?
$root 是 src,它没有通过 node_modules 运行。
提前致谢!