8

我一直在尝试安装 Grunt。当我运行 grunt 时,我会收到以下消息和警告列表:

Local Npm module "grunt-contrib-copy" not found.  Is it installed?
Local Npm module "grunt-contrib-uglify" not found.  Is it installed?
Local Npm module "grunt-contrib-jshint" not found.  Is it installed?
Local Npm module "grunt-contrib-less" not found.  Is it installed?
Local Npm module "grunt-contrib-clean" not found.  Is it installed?
Local Npm module "grunt-contrib-watch" not found.  Is it installed?
Local Npm module "grunt-contrib-concurrent" not found.  Is it installed?
Local Npm module "grunt-contrib-nodemon" not found.  Is it installed?
Local Npm module "grunt-contrib-newer" not found.  Is it installed?
Warning: Task "copy:vendor" not found. Use --force to continue.
Aborted due to warnings.

我试过“npm install”、“npm install grunt --save-dev”、“grunt init:node”。解决问题;它没有用。任何人都可以帮忙吗?谢谢。

4

3 回答 3

12

您似乎没有在 Gruntfile.js 中加载模块,或者您还没有安装所有模块。尝试npm install <module-name> --save-dev所有模块。

于 2015-07-20T02:56:36.907 回答
0

运行 grunt 需要一个 package.json 和 Gruntfile.js 文件。将文件 package.json 和 Gruntfile 保存在项目的根目录中。之后,它将起作用。

错误:

在此处输入图像描述

将文件 package.json 和 Gruntfile 保存在根目录后:

在此处输入图像描述

于 2018-10-24T10:19:54.420 回答
0

就我而言, node_modules位于奇数的父目录中gruntFile.js
,可能会有所帮助

于 2019-01-08T14:11:50.870 回答