You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Modify the output formatting or show additional information. Specify one or more comma-delimited values: group, ownerChanged, repo. Run "ncu --help --format" for details.',
312
+
'Modify the output formatting or show additional information. Specify one or more comma-delimited values: group, ownerChanged, repo.',
'Check peer dependencies of installed packages and filter updates to compatible versions. Run "ncu --help --peer" for details.',
391
+
description: 'Check peer dependencies of installed packages and filter updates to compatible versions.',
393
392
type: 'boolean',
394
393
help: `Check peer dependencies of installed packages and filter updates to compatible versions.
395
394
@@ -448,7 +447,7 @@ As a comparison: without using the --peer option, ncu will suggest the latest ve
448
447
description: 'Third-party npm registry.',
449
448
help: wrap(`Specify the registry to use when looking up package version numbers.
450
449
451
-
When --packageManager staticRegistry is set, --registry must specify a path to a JSON registry file. Run "ncu --help --packageManager" for details.`),
450
+
When --packageManager staticRegistry is set, --registry must specify a path to a JSON registry file.`),
452
451
type: 'string',
453
452
},
454
453
{
@@ -496,7 +495,7 @@ When --packageManager staticRegistry is set, --registry must specify a path to a
496
495
short: 't',
497
496
arg: 'value',
498
497
description:
499
-
'Determines the version to upgrade to: latest, newest, greatest, minor, patch, @[tag], or [function]. Run "ncu --help --target" for details. (default: "latest")',
498
+
'Determines the version to upgrade to: latest, newest, greatest, minor, patch, @[tag], or [function]. (default: latest).',
Copy file name to clipboardExpand all lines: src/types/RunOptions.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ export interface RunOptions {
30
30
/** Include deprecated packages. */
31
31
deprecated?: boolean
32
32
33
-
/** Iteratively installs upgrades and runs tests to identify breaking upgrades. Run "ncu --doctor" for detailed help. Add "-u" to execute. */
33
+
/** Iteratively installs upgrades and runs tests to identify breaking upgrades. Requires "-u" to execute. Run "ncu --help --doctor" for details. */
34
34
doctor?: boolean
35
35
36
36
/** Specifies the install script to use in doctor mode. (default: npm install/yarn) */
@@ -96,7 +96,7 @@ export interface RunOptions {
96
96
/** Current working directory of npm. */
97
97
prefix?: string
98
98
99
-
/** Third-party npm registry. */
99
+
/** Third-party npm registry. Run "ncu --help --registry" for details. */
100
100
registry?: string
101
101
102
102
/** Exclude packages matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function. */
@@ -117,7 +117,7 @@ export interface RunOptions {
117
117
/** Read package.json from stdin. */
118
118
stdin?: string
119
119
120
-
/** Determines the version to upgrade to: latest, newest, greatest, minor, patch, @[tag], or [function]. Run "ncu --help --target" for details. (default: "latest") */
120
+
/** Determines the version to upgrade to: latest, newest, greatest, minor, patch, @[tag], or [function]. (default: latest). Run "ncu --help --target" for details. */
0 commit comments