我先删除了旧版本的grunt,然后安装了新的grunt版本,然后我得到了这个错误:
D:\www\grunt-test\grunt grunt-cli: grunt命令行界面。
(v0.1.4)
致命错误:无法找到本地咕噜声。
如果您看到这条消息,要么是没有找到Gruntfile,要么是
Grunt还没有安装到项目的本地。更多的
有关安装和配置grunt的信息,请参见
入门指南:http://gruntjs.com/getting-started
这是因为在我的系统路径中没有引用grunt吗?还是别的什么?我已经试着重新安装过几次了。
我认为你的项目目录中没有一个grunt.js文件。使用grunt:init,它会为你提供jQuery、node、commonjs等选项。选择你想要的,然后继续。这真的很管用。欲了解更多信息,请访问此网站。
这样做:
1. npm install -g grunt
2. grunt:init ( you will get following options ):
jquery: A jQuery plugin
node: A Node module
commonjs: A CommonJS module
gruntplugin: A Grunt plugin
gruntfile: A Gruntfile (grunt.js)
3 .grunt init:jquery (if you want to create a jQuery related project.).
它应该会起作用。
1.4版本的解决方案:
1. npm install -g grunt-cli
2. npm init
fill all details and it will create a package.json file.
3. npm install grunt (for grunt dependencies.)
编辑:针对新版本的更新解决方案:
npm install grunt --save-dev