I linked a locally developed package using npm link command. Since then I am not able to unlink it back.
I am on windows 10.
I have tried:
- npm unlink
- npm remove
- npm uninstall
- Completely wipe out npm caches and global repo.
I would expect the package will be installed from the npm network repo now as i have:
"dependencies": {
"package": "^version"
}
in my package.json file but it is still installing the local linked version. Where npm stores links?