因此,当我有一个项目的 gulpfile 与我的 index.html 位于同一文件夹中时
但是现在我有一个项目,我希望 gulpfile.js 在一个文件夹中,并且我的项目的根目录有 index.html (是的,带有所有正确的标签)
相同的文件夹这有效
return gulp.src('*.html')
.pipe(wiredep(options))
.pipe(inject(injectSrc, injectOptions))
.pipe(gulp.dest(''));
index.html 现在回到 gulp 文件目录之外
return gulp.src('*.html')
.pipe(wiredep(options))
.pipe(inject(injectSrc, injectOptions))
.pipe(gulp.dest('../index.html'));
我收集到我不明白 gulp 的 src
和dest
,我需要做什么?