mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 09:37:18 +08:00
25 lines
582 B
JSON
25 lines
582 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"id": "PostUpdateSchema",
|
|
"type": "object",
|
|
"properties": {
|
|
"package": {
|
|
"description": "The package to migrate.",
|
|
"type": "string"
|
|
},
|
|
"collection": {
|
|
"description": "The collection to load the migrations from.",
|
|
"type": "string"
|
|
},
|
|
"from": {
|
|
"description": "The version installed previously.",
|
|
"type": "string"
|
|
},
|
|
"to": {
|
|
"description": "The version to migrate to.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["package", "collection", "from", "to"]
|
|
}
|