I have installed example-app.tgz using this command npm install --save example-app.tgz but i can not uninstall this library So how to uninstall this npm package?
Not working
npm uninstall --save ../example-app.tgz
Try this:
1) npm uninstall example-ng-lib-app --save
2) or delete node_modules directory (you might need to kill the app first). remove the example-ng-lib-app from package.json in your root directory. run command: npm install
来源:https://stackoverflow.com/questions/57474470/how-to-uninstall-angular-packaged-library