4

我正在使用基于 MacOS 构建的相当复杂的现有软件系统。它是使用 Maven 构建的。该构建在过去对我来说是正确的,目前对我团队中的其他人也有效,所以这表明我在本地做了一些导致失败的事情。我最近不得不重新安装 npm、grunt 和 bower。现在我的机器上已经安装了所有三个。当它到达使用 grunt notify 的部分时,我收到一个致命错误:

>> npm Fatal error: spawn /private/tmp/git-repo/lumify-data/lumify-public/web/war/src/main/webapp/node_modules/grunt-notify/lib/platforms../bin/Grunt.app/Contents/MacOS/Grunt ENOENT

当我从命令行运行它时,Grunt-notify 已安装并工作。有人可以指出我在哪里看的方向吗?是否有一个配置文件放在我错过的某个地方?

4

1 回答 1

3

当我更新 node/npm 时,我遇到了同样的问题。您可以看到它已在此处讨论 - 问题是由于路径不正确:https ://github.com/dylang/grunt-notify/issues/118

他们已经对其进行了修复,因此您需要将您在 package.json 中使用的 grunt-notify 版本更新为:“grunt-notify”:“^0.4.5”

然后运行: npm uninstall grunt-notify npm install grunt-notify

于 2016-07-05T02:32:24.313 回答