我想编译我的咖啡文件并通过使用 gulp 流将它们注入到我的 index.html 中。
这是我尝试过的:
gulp.task('scripts', function() {
return gulp.src(paths.coffee.source)
.pipe(coffee())
.pipe(inject(paths.index.source))
.pipe(gulp.dest(paths.coffee.destination));
});
这是错误:
[17:57:39] 'scripts' errored after 2.19 ms passing target file as a string is deprecated! Pass a vinyl file stream (i.e. use `gulp.src`)!
显然我正在做的事情已被弃用。是否有可能在一个流中做到这一点?