所以当我有一个项目的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
,我需要做什么?
答案 0 :(得分:0)
我认为gulp.dest
的参数将是一个'文件夹,而不是一个'文件'路径。喜欢:' ../'
如果您要将html文件重命名为index.html,则应在gulp-rename
gulp.dest
来执行此操作