Reputation: 8075
I am trying to update my packages within my Ionic Project.
When running for example:
ionic plugin rm phonegap-plugin-barcodescanner
I get the error:
Error: .idea not supported
A Google search reveals nothing.
Upvotes: 2
Views: 1593
Reputation: 81
I made this command and it worked fine for me :
ionic cordova platform rm .idea
Upvotes: 3
Reputation: 5843
.idea
is a (hidden) directory created by IntelliJ IDEA (and possibly variants like WebStorm and other Jetbrains products). You could try to remove the .idea
directory from the plugins directory (after making an backup).
Upvotes: 3