最佳答案
最近我转到了 Node v. 6,它开始在运行普通构建时造成越来越多的问题
例如:
$ gulp
[14:02:20] Local gulp not found in ~/_Other/angular-2-ts/angular2-seed
[14:02:20] Try running: npm install gulp
而 Gulp 和所有其他插件和模块都安装在/node _ module 文件夹中(甚至通过 rm -rf node_modules
重新安装)。
这些错误中的大多数都有类似于
(node:42) fs: re-evaluating native module sources is not supported.
If you are using the graceful-fs module,
please update it to a more recent version.
以42为任意数字
就像在那期我提交的角2种子回购 https://github.com/mgechev/angular2-seed/issues/902
我试图通过 n (https://www.npmjs.com/package/n)降级到 Node v. 5——它起作用了。然后删除所有 node_modules
文件夹,然后做
npm info graceful-fs -v
3.3.6
好的,让我们升级或删除并安装新的:
npm i graceful-fs@latest
npm i graceful-fs@4.1.4
sudo npm i graceful-fs@4.1.4 -g
结果出来了
npm info graceful-fs -v
3.3.6
所以现在我被 3.3.6卡住了,甚至在一些模块依赖中更糟,比如
$ angular2-seed
$ npm install
//other lines..
npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and before
will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0
as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
这里的策略是什么: