npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN fsevents@1.2.0 had bundled packages that do not match the required version(s). They have been replaced with non-bundled versions.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.0 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.0: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
原因:
fsevents 不在 package.json 里,但是仍然安装了,是因为你的系统是 Windows 系统,fsevents 是苹果系统的可选依赖,你的项目有可能是团队项目,别人在他的 mac 上安装了 fsevents 相关依赖库,所以到这边你也就安装到你的 windows 上边了。你可以检查你的 package.json 文件中是不是有fsevents相关依赖,删除即好!
如果没有,其他的 npm 包也会有依赖 fsevents 的!!!
这是 warning 错误,是因为mac下需要 fsevents,这里是在 windows 环境,所以可以忽略这个警告,对你没什么影响的。
网友评论