gulp src和destination没有注入我的index.html文件

时间:2017-03-23 22:20:38

标签: npm gulp bower gulp-inject wiredep

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

1 个答案:

答案 0 :(得分:0)

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

如果您要将html文件重命名为index.html,则应在gulp-rename

之前使用gulp.dest来执行此操作