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 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 `min-release-age` from `.npmrc`.</td></tr>
515
- <tr><td>yarn</td><td>Reads `npmMinimalAgeGate` from `.yarnrc.yml`, excluding packages matched by `npmPreapprovedPackages`.</td></tr>
516
- <tr><td>pnpm</td><td>Reads `minimumReleaseAge` from `pnpm-workspace.yaml`, excluding packages matched by `minimumReleaseAgeExclude`.</td></tr>
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: `npm install` or `yarn`)</td></tr>
561
- <tr><td>--doctorTest</td><td>specify a custom test script (default: `npm test`)</td></tr>
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 `--registry` option.
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