英文:
Can "yarn add global " update packages installed by npm?
问题
我使用yarn作为包管理器,但第一次安装nativescript时,我使用了:
npm install -g nativescript
我可以使用yarn add global nativescript
来更新包吗?
**注意:**我在我的项目文件夹中运行了tns package-manager set yarn
。
英文:
I use yarn as package-manager but the first time I install nativescript I used;
npm install -g nativescript
Can I update the package using yarn add global nativescript
?
NOTE: I run tns package-manager set yarn
in my projects folder
答案1
得分: 2
是的;
> yarn global add nativescript
和
yarn global upgrade
更新由 npm 安装的包
请考虑查看 从npm迁移
感谢 @Manoj 的回答
英文:
Yes ;
> yarn global add nativescript
and
yarn global upgrade
updates packages which are installed by npm
Please consider checking migrating from npm
Thanks to @Manoj for answer
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论