Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经用npm link包文件夹中的命令链接了一个包,然后我删除了它,我无法从 npm 全局列表中取消链接包。
npm link
如果你跑npm -g list --depth=0,你会看到破碎的路径吗?
npm -g list --depth=0
假设删除的包文件夹名为demolib.
demolib
创建与以前同名的新文件夹demolib
在文件夹内运行npm init -y以创建 package.json 文件。
npm init -y
然后,在文件夹中运行npm unlink,npm 将从全局 npm 列表中删除损坏的符号链接
npm unlink