小编典典

导致此错误的原因 - “致命错误:无法找到本地咕噜声”

all

我先把旧版本的grunt删掉了,然后我安装了新的grunt版本,然后出现这个错误:

D:\www\grunt-test\grunt grunt-cli:grunt 命令行界面。(v0.1.4)

致命错误:无法找到本地咕噜声。

如果您看到此消息,则说明未找到 Gruntfile 或未将 grunt 安装到您的项目本地。有关安装和配置 grunt 的更多信息,请参阅入门指南:
http: //gruntjs.com/getting-started

这是因为我的系统路径中没有对 grunt 的引用吗?或者是其他东西?我已经尝试重新安装了几次。


阅读 128

收藏
2022-03-24

共1个答案

小编典典

我认为您的项目目录中没有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.).

它应该工作。

v1.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
2022-03-24