Grunt error: Cannot find module 'time-grunt'

Grunt error: Cannot find module 'time-grunt'

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

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

我的包版本: 节点:'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 任务 运行 没有错误。

我不明白哪里出了问题。

如何通过 CLI 测试正确安装 time-grunt?

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

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

然后是此处列出的所有模块:

注意:您可以使用 npm install.

一次安装上图中的所有依赖项

最后我 运行 grunt 命令成功了!

在 package.json

的文件夹中使用 npm installsudo npm install

您需要将它添加到 dependencies 中而不是 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"
  }
}