出于某种原因,gulp-inject最近开始需要很长时间(3分钟)。以前需要几秒钟。我不确定在诊断此问题时从哪里开始。这是我的输出:
[18:04:39] gulp-inject 1 files into index.html.
[18:04:39] gulp-inject 277 files into index.html.
[18:04:39] Finished 'inject' after 380 ms
[18:04:39] Starting 'html'...
[18:04:39] gulp-inject 1 files into index.html.
[18:07:40] 'dist/' styles/app-9bd553d2.css 284.75 kB
[18:07:40] 'dist/' styles/vendor-28fa652f.css 188.21 kB
[18:07:40] 'dist/' scripts/vendor-2308930e.js 1.93 MB
[18:07:40] 'dist/' scripts/app-efe218d1.js 368.71 kB
[18:07:40] 'dist/' index.html 769 B
[18:07:40] 'dist/' all files 2.77 MB
[18:07:40] Finished 'html' after 3.02 min
是否有一个我不知道的冗长选项?任何帮助将不胜感激。
答案 0 :(得分:0)
可能不是gulp-inject
这很慢。这是JS / CSS的缩小,这很慢。如果你在gulp构建文件中做了类似的事情
.pipe(config.production ? $.uglify() : $.util.noop())
.pipe(config.production ? $.csso() : $.util.noop()
.pipe(config.production ? $.htmlmin() : $.util.noop())
(您可以在此处阅读脚本中如何使用此config.production
变量:https://knpuniversity.com/screencast/gulp/minify-only-production)
然后很可能会在非生产环境中大大加快您的构建过程。