mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-21 22:34:21 +08:00
31 lines
621 B
JSON
31 lines
621 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"$id": "ng-cli://commands/add.json",
|
|
"description": "Add support for a library to your project.",
|
|
"$longDescription": "./add.md",
|
|
|
|
"$scope": "in",
|
|
"$impl": "./add-impl#AddCommand",
|
|
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"properties": {
|
|
"collection": {
|
|
"type": "string",
|
|
"description": "The package to be added.",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 0
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
]
|
|
},
|
|
{
|
|
"$ref": "./definitions.json#/definitions/base"
|
|
}
|
|
]
|
|
}
|