npm-check-updates 22.2.5 → 22.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/build/cli.cjs +44 -54
- package/build/cli.cjs.map +1 -1
- package/build/cli.js +5838 -6037
- package/build/cli.js.map +1 -1
- package/build/index.cjs +407 -579
- package/build/index.cjs.map +1 -1
- package/build/index.d.ts +11 -2
- package/build/index.js +36337 -43468
- package/build/index.js.map +1 -1
- package/package.json +8 -20
- package/build/chunks/chunk-D-V8JGID.js +0 -29
- package/build/chunks/chunk-jrEOD7hJ.cjs +0 -1
package/README.md
CHANGED
|
@@ -511,9 +511,9 @@ cooldown: packageName => (packageName.startsWith('@my-company') ? 0 : 3)
|
|
|
511
511
|
If `--cooldown` is not set explicitly, `ncu` automatically reads the cooldown configuration from your package manager's config file:
|
|
512
512
|
|
|
513
513
|
<table>
|
|
514
|
-
<tr><td>npm</td><td>Reads
|
|
515
|
-
<tr><td>yarn</td><td>Reads
|
|
516
|
-
<tr><td>pnpm</td><td>Reads
|
|
514
|
+
<tr><td>npm</td><td>Reads <code>min-release-age</code> from <code>.npmrc</code>, excluding packages matched by <code>min-release-age-exclude</code>.</td></tr>
|
|
515
|
+
<tr><td>yarn</td><td>Reads <code>npmMinimalAgeGate</code> from <code>.yarnrc.yml</code>, excluding packages matched by <code>npmPreapprovedPackages</code>.</td></tr>
|
|
516
|
+
<tr><td>pnpm</td><td>Reads <code>minimumReleaseAge</code> from <code>pnpm-workspace.yaml</code>, excluding packages matched by <code>minimumReleaseAgeExclude</code>.</td></tr>
|
|
517
517
|
</table>
|
|
518
518
|
|
|
519
519
|
### Cooldown Formatting
|
|
@@ -557,8 +557,8 @@ To be more precise:
|
|
|
557
557
|
Additional options:
|
|
558
558
|
|
|
559
559
|
<table>
|
|
560
|
-
<tr><td>--doctorInstall</td><td>specify a custom install script (default:
|
|
561
|
-
<tr><td>--doctorTest</td><td>specify a custom test script (default:
|
|
560
|
+
<tr><td>--doctorInstall</td><td>specify a custom install script (default: <code>npm install</code> or <code>yarn</code>)</td></tr>
|
|
561
|
+
<tr><td>--doctorTest</td><td>specify a custom test script (default: <code>npm test</code>)</td></tr>
|
|
562
562
|
</table>
|
|
563
563
|
|
|
564
564
|
Example:
|
|
@@ -809,7 +809,7 @@ Specify whether `--registry` refers to a full npm registry or a simple JSON file
|
|
|
809
809
|
|
|
810
810
|
<table>
|
|
811
811
|
<tr><td>npm</td><td>Default npm registry</td></tr>
|
|
812
|
-
<tr><td>json</td><td>Checks versions from a file or url to a simple JSON registry. Must include the
|
|
812
|
+
<tr><td>json</td><td>Checks versions from a file or url to a simple JSON registry. Must include the <code>--registry</code> option.
|
|
813
813
|
|
|
814
814
|
Example:
|
|
815
815
|
|