Yarn参考手册
CLI
yarn unlink
取消链接先前为包创建的符号链接。
使用yarn link
删除创建的符号链接包,可以使用yarn unlink
。
yarn unlink
在以前用于创建链接的文件夹中运行yarn unlink
。
yarn unlink [package]
要取消在项目开发过程中符号链接的软件包,只需运行yarn unlink [package]
即可。您需要运行yarn
或yarn install
重新安装已链接的软件包。
Continued example from the yarn link
documentation: assume two folders react
and react-relay
that are located next to each other with react
linked into the react-relay
project:
$ cd react
$ yarn unlink
yarn link vx.x.x
success Unregistered "react".
$ cd ../react-relay
$ yarn unlink react
yarn link vx.x.x
success Unregistered "react".
另请参阅:
-
yarn link
:为本地开发提供符号链接包。
CLI相关

Apache Hadoop YARN (Yet Another Resource Negotiator,另一种资源协调者)是一种新的 Hadoop 资源管理器,它是一个通用资源管理系统,可为上层应用提供统一的资源管理和调度,它的引入为集群在利用率、资源统一管理和数据共享等方面带来了巨大好处。
主页 | https://yarnpkg.com/ |
源码 | https://github.com/yarnpkg/yarn |
发布版本 | 1.3.2 |