我使用Frontend Maven Plugin和Grunt v0.4.5。当node_modules文件夹与package.json和Gruntfile.js位于同一文件夹中时,我的配置工作正常。但现在我必须将node_modules文件夹放在子文件夹中,某事。像:
-Gruntfile.js
-package.json
-test/
--node_modules
当我运行脚本时,我收到此错误消息,而它执行'grunt'命令:
Error: Cannot find module 'C:\Develop\mvn-proj\my-app\node_modules\grunt-cli\bin\grunt'
我在哪里或如何设置node_modules文件夹的路径?
编辑:FYI npm与文件夹中的本地安装一起使用。