gulp.dest()没有创建输出文件

时间:2017-11-07 18:46:49

标签: gulp

我在gulp任务中有以下代码。它没有写输出文件。

  const player = {
    player: {
      src: 'x',
      tpl: '<style>%s</style>'
    }
  }
  gulp.src('.src/index.html')
    .pipe(replace(player))
    .pipe(gulp.dest('./app/));

1 个答案:

答案 0 :(得分:1)

这有其中一个&#39; well duh&#39;答案。您已从源路径中删除了斜杠。它应该是./src/index.html。由于gulp.src()不会引发错误,因此您无法检查错误。