2dda2e10
Administrator
generator ignore
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
"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"
}
]
}
|