remove

The remove command is a utility for plugin authors that removes plugins from the installation directory; see add for information about the plugin installation location.

Remove all installed versions of a plugin:

upm rm std::core

Or use a version range to remove matched versions:

upm rm std::core@^4

Usage

upm-remove 0.48.15
Remove installed plugin(s)

USAGE:
    upm remove <target>

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

ARGS:
    <target>    

EXAMPLES:
    Remove all versions of a plugin:
        upm rm std::core
    Remove a specific version:
        upm rm std::core@=4.1.12
    Remove all versions with major version 4:
        upm rm std::core@^4

Back to upm