mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 09:15:01 +08:00
This change removes the need for the `@schematics/schematics` package and moves it inside `@angular-devkit/schematics-cli`.
22 lines
468 B
JSON
22 lines
468 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"id": "SchematicsSchematicSchema",
|
|
"title": "Schematic Options Schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "The package name for the new schematic.",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 0
|
|
}
|
|
},
|
|
"author": {
|
|
"type": "string",
|
|
"description": "Author for the new schematic."
|
|
}
|
|
},
|
|
"required": []
|
|
}
|