yarn install 找不到包,但 npm install 可以
yarn install can't find package but npm install can
我正在使用 yarn 来管理我的 npm
包。如果我这样做 npm install
,一切正常。但是,如果我尝试执行 yarn install
它会失败并出现以下错误:
info No lockfile found.
[1/4] Resolving packages...
error Couldn't find package "ag-grid" on the "npm" registry.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
这指向一个内部存储库。为什么这不起作用?
在尝试了各种方法并浏览了太多 Google 页之后,我已经弄明白了。
问题是我在 .npmrc
中设置了以下内容:
registry=https://internal-repo.com/some-path
虽然它需要尾部斜线:
registry=https://internal-repo.com/some-path/
我正在使用 yarn 来管理我的 npm
包。如果我这样做 npm install
,一切正常。但是,如果我尝试执行 yarn install
它会失败并出现以下错误:
info No lockfile found.
[1/4] Resolving packages...
error Couldn't find package "ag-grid" on the "npm" registry.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
这指向一个内部存储库。为什么这不起作用?
在尝试了各种方法并浏览了太多 Google 页之后,我已经弄明白了。
问题是我在 .npmrc
中设置了以下内容:
registry=https://internal-repo.com/some-path
虽然它需要尾部斜线:
registry=https://internal-repo.com/some-path/