mirror of
https://github.com/bower/bower.git
synced 2026-04-24 03:00:19 -04:00
It's because people are depending on internals of bower, like "bower/lib/renderers/StandardRenderer" Instead we move templates and bin to lib directory and leave paths intact. Additionally we alias bin/bower to lib/bin/bower.
30 lines
926 B
JSON
30 lines
926 B
JSON
{
|
|
"command": "uninstall",
|
|
"description": "Uninstalls a package locally from your bower_components directory",
|
|
"usage": [
|
|
"uninstall <name> [<name> ..] [<options>]"
|
|
],
|
|
"options": [
|
|
{
|
|
"shorthand": "-f",
|
|
"flag": "--force",
|
|
"description": "Continues uninstallation even after a dependency conflict"
|
|
},
|
|
{
|
|
"shorthand": "-h",
|
|
"flag": "--help",
|
|
"description": "Show this help message"
|
|
},
|
|
{
|
|
"shorthand": "-S",
|
|
"flag": "--save",
|
|
"description": "Remove uninstalled packages from the project's bower.json dependencies"
|
|
},
|
|
{
|
|
"shorthand": "-D",
|
|
"flag": "--save-dev",
|
|
"description": "Remove uninstalled packages from the project's bower.json devDependencies"
|
|
}
|
|
]
|
|
}
|