0

我正在使用 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 运行。

提前致谢!

4

1 回答 1

0

弄清楚了,有一些不应该有的 lib 文件被拾取,并且由于它们很大,它们导致 jshint 需要更长的时间。翻转办公桌

于 2017-12-06T16:08:56.413 回答