Created
March 20, 2018 14:35
-
-
Save getsetbro/c770ff8ec05dd4d534ae731359206fab to your computer and use it in GitHub Desktop.
npmuninstalllog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sb-mbp:~ gsb$ npm list -g --depth 0 | |
/usr/local/lib | |
├── @angular/[email protected] | |
├── @frctl/[email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
└── [email protected] | |
sb-mbp:~ gsb$ npm uninstall -g lodash-cli | |
removed 40 packages in 0.375s | |
sb-mbp:~ gsb$ npm list -g --depth 0 | |
/usr/local/lib | |
├── @angular/[email protected] | |
├── @frctl/[email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
└── [email protected] | |
sb-mbp:~ gsb$ npm uninstall -g @frctl/fractal | |
up to date in 2.26s | |
sb-mbp:~ gsb$ npm list -g --depth 0 | |
/usr/local/lib | |
├── @angular/[email protected] | |
├── @frctl/[email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
└── [email protected] | |
sb-mbp:~ gsb$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment