0

因此,当我有一个项目的 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 的 srcdest,我需要做什么?

4

1 回答 1

0

我认为您的参数gulp.dest将是“文件夹”,而不是“文件”路径。喜欢: '../'

如果你想将你的 html 文件重命名为 index.html,你应该gulp-rename在你之前使用它gulp.dest

于 2017-03-24T10:24:14.410 回答