How do I uninstall a package in Elm?

Viewed 213

If I have installed a package with elm install *package name* how do I then uninstall it?

1 Answers

There is no way with the included elm tool, though elm-json is a common tool that can do that.

You can also just remove the dependency from your elm.json file (though elm-json will take care of indirect dependencies that might be affected).

Related