18

我按照网上http://yeoman.io/上提供的步骤进行操作。完成所有步骤后,我面临此错误消息`$ grunt Loading "Gruntfile.js" tasks...ERROR

错误:找不到模块 '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"

4

2 回答 2

44

我有同样的问题。以这种方式修复它:

npm install --save-dev connect-livereload
npm install

可能“npm install”就足够了。

于 2013-08-05T12:52:06.053 回答
0

安装

npm install connect-livereload --save-dev
于 2015-12-23T19:11:00.940 回答