我计划加入,所以我克隆了来自git的repo。我已安装npm install
然后bower install
,但当我尝试使用grunt serve
命令运行应用时,控制台会返回此信息:
Loading "cdnify.js" tasks...ERROR
>> Error: Cannot find module 'chalk'
Running "serve" task
Running "clean:server" (clean) task
Running "wiredep:app" (wiredep) task
Warning: ENOENT, no such file or directory '/home/tomek/dev/mobilas/app/bower.json' Use --force to continue.
Aborted due to warnings.
问题是,我不应该真正改变Gruntfile.js和bower.json文件。
答案 0 :(得分:0)
上面评论中引用的链接为我修复了它......只需要运行
npm install chalk
在项目目录中作为解决方法,直到他们修复了其中一个grunt依赖项。
答案 1 :(得分:0)
运行以下命令应该可以解决您的错误......
$cd /home/tomek/dev/mobilas
$rm -rf node_modules
$npm install
现在您应该可以使用$grunt serve
命令