AssertionError [ERR_ASSERTION]: Task function must be specified
gulp v4にバージョンアップした事による仕様変更で出るエラーです。
gulpfile.jsのgulp.task()の引数の指定方法が変わったため修正が必要となります。
修正前
g.task 'default', ['bs' , 'style'], ->
g.watch '../scss/**/*.scss', ['style', 'bsReload']
修正後
g.task 'default', g.series(g.parallel('bs', 'style'), ->
g.watch '../scss/**/*.scss', g.task('style', 'bsReload')
return
)
comment