我正在使用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。
提前致谢!
答案 0 :(得分:0)
想通了,有些lib文件被拿起来不应该有,因为它们很大,导致jshint需要更长的时间。 翻转桌面