我在gulp任务中有以下代码。它没有写输出文件。
const player = {
player: {
src: 'x',
tpl: '<style>%s</style>'
}
}
gulp.src('.src/index.html')
.pipe(replace(player))
.pipe(gulp.dest('./app/));
答案 0 :(得分:1)
这有其中一个&#39; well duh&#39;答案。您已从源路径中删除了斜杠。它应该是./src/index.html
。由于gulp.src()
不会引发错误,因此您无法检查错误。