mirror of
https://github.com/bower/bower.git
synced 2026-01-14 00:38:03 -05: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.
35 lines
1003 B
JSON
35 lines
1003 B
JSON
{
|
|
"command": "update",
|
|
"description": "Updates installed packages to their newest version according to bower.json.",
|
|
"usage": [
|
|
"update <name> [<name> ..] [<options>]"
|
|
],
|
|
"options": [
|
|
{
|
|
"shorthand": "-F",
|
|
"flag": "--force-latest",
|
|
"description": "Force latest version on conflict"
|
|
},
|
|
{
|
|
"shorthand": "-h",
|
|
"flag": "--help",
|
|
"description": "Show this help message"
|
|
},
|
|
{
|
|
"shorthand": "-p",
|
|
"flag": "--production",
|
|
"description": "Do not install project devDependencies"
|
|
},
|
|
{
|
|
"shorthand": "-S",
|
|
"flag": "--save",
|
|
"description": "Update dependencies in bower.json"
|
|
},
|
|
{
|
|
"shorthand": "-D",
|
|
"flag": "--save-dev",
|
|
"description": "Update devDependencies in bower.json"
|
|
}
|
|
]
|
|
}
|