Skip to content

Instantly share code, notes, and snippets.

@0x07dc
Created May 9, 2015 17:39
Show Gist options
  • Save 0x07dc/a22ebf2e84c55ab69e2d to your computer and use it in GitHub Desktop.
Save 0x07dc/a22ebf2e84c55ab69e2d to your computer and use it in GitHub Desktop.
Remove all plugins from Cordova project
# May need to run multiple times to settle dependencies
cordova plugin ls | grep -o "^\S*" | while read i;do cordova plugin rm $i; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment