我有以下代码,
http://paste.ubuntu.com/6824071/
但是当我在 cli 中运行“gulp”时,它只会运行任务并退出。它不会留下来观看文件并重新编译。
Ezras-MacBook-Air:no1fitness-sandbox Ezra$ gulp
[gulp] Using file /www/no1fitness-sandbox/gulpfile.js
[gulp] Working directory changed to /www/no1fitness-sandbox
[gulp] Running 'default'...
gulp.run() has been deprecated. Use task dependencies or gulp.watch task triggering instead.
[gulp] Running 'styles'...
[gulp] Finished 'default' in 8.2 ms
[gulp] Finished 'styles' in 1.85 s
Ezras-MacBook-Air:no1fitness-sandbox Ezra$
我能做到这一点的唯一方法是删除 gulp.watch 函数周围的任务。
这是正确的吗?有更好的方法(有效)吗?
然后是关于 gulp.run 的警告,我对此感到困惑,因为他们自己的文档似乎仍在使用它。