在我的我通过它的相对路径package.json
指向本地包:my-custom-i18n
包.json
"dependencies": {
"core-js": "^2.4.1",
"my-custom-i18n": "./../MyProject.Shared/myproject-i18n",
"rxjs": "5.0.0-beta.12",
...
}
npm install
正确安装包,但yarn
有问题,根本找不到这个包:
纱线产量
$ yarn
yarn install v0.15.1
info No lockfile found.
[1/4] Resolving packages...
error Couldn't find package "myproject-i18n" on the "npm" registry.
info Visit http://yarnpkg.com/en/docs/cli/install for documentation about this command.
我看到它在npm
注册表中查找它,而这个包并不存在。
问题
将纱线与本地包一起使用有什么变化吗?本地包是指相对路径指向的包,如my-custom-i18n
.