如何将新的 grunt-plugin 模块加载到项目中。
目录结构示例:
|-- abc-project
| |-- ...
| |-- app.js
| |-- Gruntfile.js --> `grunt.loadNpmTasks('my-grunt-plugin');`
| \-- package.json
|
\-- my-grunt-plugin
|-- grunt-tasks
| |-- task-a.js --> `grunt.registerTask('task-a', 'running task a', function() { ... });`
| \-- task-b.js
\-- ...
- 在目录中运行
npm link
命令。my-grunt-plugin
- 通过在dir 中运行
npm link my-grunt-plugin
命令来链接您的本地 grunt 插件模块。abc-project
- 运行
grunt task-a
命令,它会记录Local Npm module "my-grunt-plugin" not found. Is it installed?