我正在按照网络http://yeoman.io/上提供的步骤进行操作。完成所有步骤后,我面临此错误消息 `$ grunt 加载“Gruntfile.js”任务......错误
错误:找不到模块'connect-livereload' 警告:找不到任务“默认”。使用--force继续`
在我的package.json中,我拥有所有的依赖包
“connect-livereload”:“~0.2.0”, “grunt-google-cdn”:“~0.2.0”, “grunt-ngmin”:“~0.0.2”, “grunt-contrib-livereload”:“~0.1.2”
答案 0 :(得分:44)
我遇到了同样的问题。用这种方式修正了它:
npm install --save-dev connect-livereload
npm install
可能是“npm install”就够了。
答案 1 :(得分:0)
安装
npm install connect-livereload --save-dev