2019年7月21日 星期日

升級gulp4 'Did you forget to signal async completion?'錯誤解法

1.改為 async + await

gulp.task('build', async() => {
  await execBuild()
})
2.使用回傳的done
gulp.task('build', (done) => {
  execBuild()
  done()
})

沒有留言: