gulp遇到一些问题,我在这里集中记录一下,后续遇到更多的继续补充。
1、错误提示是:events.js :174 throw er; // Unhandled 'error' event
原因可能是gulp 不支持ES6 语法。也可能是变量声明时没有 var/const/let进行修饰。
gulp es6的处理方法参考 https://www.lanwuyaojiu.cn/blogm/blogart-45.html
2、错误是 primordials is not defined。
原因是node版本和gulp的版本不匹配,请降级node。
3、错误是Task function must be specified。
原因是gulpfile里面使用了旧版本的API写法,请使用新的API写法,参考https://www.lanwuyaojiu.cn/blogm/blogart-21.html。