Home > Software engineering >  How to remove vue feather icons
How to remove vue feather icons

Time:11-28

I installed vue-feather icons with yarn add vue-feather-icons but after that I found a better icons elsewhere and I want to remove it from the project. What command should I use? Thank you.

CodePudding user response:

To uninstall a dependency with yarn, use the remove command:

yarn remove <packageName> --<flag>

Removing vue-feather-icons is then:

yarn remove vue-feather-icons

CodePudding user response:

Just run yarn remove vue-feather-icons at the source folder of your project and the package will be removed from your node_modules and package.json.

  • Related