pnpm unlink
取消链接一个系统范围的package
(相对于 pnpm link
).
If called without arguments, all linked dependencies will be unlinked inside the current project.
这类似于 yarn unlink
,但 pnpm 会在删除外部链接后重新安装依赖项。
pnpm link --global <package>
, you should use pnpm uninstall --global <package>
. pnpm unlink
only removes the links in your current directory. :::