|
5 | 5 | "type": "object",
|
6 | 6 | "properties": {
|
7 | 7 | "packages": {
|
8 |
| - "description": "The names of package(s) to update.", |
| 8 | + "description": "The package or packages to update.", |
9 | 9 | "type": "array",
|
10 | 10 | "items": {
|
11 | 11 | "type": "string"
|
|
15 | 15 | }
|
16 | 16 | },
|
17 | 17 | "force": {
|
18 |
| - "description": "If false, will error out if installed packages are incompatible with the update.", |
| 18 | + "description": "When false (the default), reports an error if installed packages are incompatible with the update.", |
19 | 19 | "default": false,
|
20 | 20 | "type": "boolean"
|
21 | 21 | },
|
22 | 22 | "all": {
|
23 |
| - "description": "Whether to update all packages in package.json.", |
| 23 | + "description": "When true, update all packages in `package.json`.", |
24 | 24 | "default": false,
|
25 | 25 | "type": "boolean"
|
26 | 26 | },
|
27 | 27 | "next": {
|
28 |
| - "description": "Use the largest version, including beta and RCs.", |
| 28 | + "description": "Update to the latest version, including beta and RCs.", |
29 | 29 | "default": false,
|
30 | 30 | "type": "boolean"
|
31 | 31 | },
|
32 | 32 | "migrateOnly": {
|
33 |
| - "description": "Only perform a migration, does not update the installed version.", |
| 33 | + "description": "Perform a migration, but do not update the installed version.", |
34 | 34 | "default": false,
|
35 | 35 | "type": "boolean"
|
36 | 36 | },
|
37 | 37 | "from": {
|
38 |
| - "description": "Version from which to migrate from. Only available with a single package being updated, and only on migration only.", |
| 38 | + "description": "When using `--migrateOnly` for a single package, the version of that package from which to migrate.", |
39 | 39 | "type": "string"
|
40 | 40 | },
|
41 | 41 | "to": {
|
42 |
| - "description": "Version up to which to apply migrations. Only available with a single package being updated, and only on migrations only. Requires from to be specified. Default to the installed version detected.", |
| 42 | + "description": "When using `--migrateOnly` for a single package, the version of that package to which to migrate.", |
43 | 43 | "type": "string"
|
44 | 44 | },
|
45 | 45 | "registry": {
|
46 |
| - "description": "The NPM registry to use.", |
| 46 | + "description": "The npm registry to use.", |
47 | 47 | "type": "string",
|
48 | 48 | "oneOf": [
|
49 | 49 | {
|
|
55 | 55 | ]
|
56 | 56 | },
|
57 | 57 | "verbose": {
|
58 |
| - "description": "Display additional details during the update process.", |
| 58 | + "description": "When true, display additional details during the update process.", |
59 | 59 | "type": "boolean"
|
60 | 60 | },
|
61 | 61 | "packageManager": {
|
|
0 commit comments