错误:无法找到模块' time-grunt'

时间:2015-01-09 10:28:15

标签: node.js gruntjs npm

我尝试安装time-grunt本地和全局,清除npm缓存,更新npm,但没有任何帮助。 我明白了:

 Loading "Gruntfile.js" tasks...ERROR
 Error: Cannot find module 'time-grunt'
 Warning: Task "default" not found. Use --force to continue.

我的版本od包: 节点:'0.10.31', npm:'1.4.23'

运行后: npm install --save-dev time-grunt 在package.json状态:

"devDependencies": {
"grunt": "^0.4.5",
...
"time-grunt": "^1.0.0"
}

这是我的grunfile.js的一部分:

module.exports = function( grunt ) {
     require('time-grunt')(grunt);

     grunt.initConfig({
     // grunt tasks here
     });
     // load tasks here
     // register task here
}

其他grunt任务在没有错误的情况下运行。

我不明白出了什么问题。

如何通过命令行正确测试time-grunt的安装?

3 个答案:

答案 0 :(得分:14)

您需要将其添加到依赖项中,而不是在devDependencies中。这样您就不需要单独运行$ npm install --save-dev time-grunt

{
  "name": "grunt-build",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "time-grunt": "^1.3.0"
  },
  "devDependencies": {
    "grunt": "^0.4.5",
    "grunt-contrib-clean": "~0.7.0",
    "grunt-contrib-compress": "~0.5.0",
    "grunt-contrib-concat": "~0.5.0",
    "grunt-contrib-copy": "^0.8.0",
    "grunt-contrib-uglify": "~0.5.0",
    "grunt-remove-logging": "~0.2.0"
  }
}

答案 1 :(得分:5)

在package.json

文件夹中使用npm installsudo npm install

答案 2 :(得分:4)

我最终手动安装了所有grunt依赖项。

npm install time-grunt
npm install load-grunt-config

然后列出这里列出的所有模块:

enter image description here

注意:您可以使用npm install一次性安装上面照片中的所有依赖项。

最后我运行了grunt命令,它运行了!