npm install 更改本地安装路径

npm install changing local install path

我正在尝试在我的其他本地图书馆之一中安装本地图书馆。 package.json 是:

"dependencies": {
  "@company/lib_name": "file:../../../dist/libs/company/lib_name",
  ...
}

但是,在安装时出现错误:

npm ERR! Could not install from "..\..\..\dist\dist\libs\company\lib_name" as it does not contain a package.json file.

我不明白为什么在我尝试安装时在安装路径中添加了一个额外的dist 目录。我在我的其他库中也做同样的事情并且工作正常。

我将我的 npm 版本从 6 升级到 7,一切都开始工作了