forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
64 lines (64 loc) · 1.78 KB
/
schema.json
File metadata and controls
64 lines (64 loc) · 1.78 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsUpdateSchema",
"title": "Schematic Options Schema",
"type": "object",
"properties": {
"packages": {
"description": "The package or packages to update.",
"type": "array",
"items": {
"type": "string"
},
"$default": {
"$source": "argv"
}
},
"force": {
"description": "When false (the default), reports an error if installed packages are incompatible with the update.",
"default": false,
"type": "boolean"
},
"next": {
"description": "Update to the latest version, including beta and RCs.",
"default": false,
"type": "boolean"
},
"migrateOnly": {
"description": "Perform a migration, but do not update the installed version.",
"default": false,
"type": "boolean"
},
"from": {
"description": "When using `--migrateOnly` for a single package, the version of that package from which to migrate.",
"type": "string"
},
"to": {
"description": "When using `--migrateOnly` for a single package, the version of that package to which to migrate.",
"type": "string"
},
"registry": {
"description": "The npm registry to use.",
"type": "string",
"oneOf": [
{
"format": "uri"
},
{
"format": "hostname"
}
]
},
"verbose": {
"description": "Display additional details during the update process.",
"type": "boolean"
},
"packageManager": {
"description": "The preferred package manager configuration files to use for registry settings.",
"type": "string",
"default": "npm",
"enum": ["npm", "yarn", "pnpm", "bun", "deno"]
}
},
"required": []
}