如何卸载angular打包的库
How to uninstall angular packaged library
我已经使用这个命令 npm install --save example-app 安装了 example-app 但我无法卸载这个库那么如何卸载这个 npm 包?
不工作
npm uninstall --save example-app
试试这个:
1)
npm 卸载 example-ng-lib-app --save
2)
或删除 node_modules 目录(您可能需要先终止该应用程序)。
从根目录的 package.json 中删除 example-ng-lib-app。
运行 命令:npm 安装
我已经使用这个命令 npm install --save example-app 安装了 example-app 但我无法卸载这个库那么如何卸载这个 npm 包?
不工作
npm uninstall --save example-app
试试这个:
1) npm 卸载 example-ng-lib-app --save
2) 或删除 node_modules 目录(您可能需要先终止该应用程序)。 从根目录的 package.json 中删除 example-ng-lib-app。 运行 命令:npm 安装