Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: raineorshine/npm-check-updates
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v16.12.0
Choose a base ref
...
head repository: raineorshine/npm-check-updates
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v16.12.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Aug 17, 2023

  1. Copy the full SHA
    8165ac6 View commit details
  2. 16.12.1

    raineorshine committed Aug 17, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ad07158 View commit details
Showing with 8 additions and 8 deletions.
  1. +3 −3 README.md
  2. +2 −2 package-lock.json
  3. +1 −1 package.json
  4. +2 −2 src/cli-options.ts
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -498,7 +498,7 @@ Specifies the package manager to use when looking up version numbers.
<tr><td>npm</td><td>System-installed npm. Default.</td></tr>
<tr><td>yarn</td><td>System-installed yarn. Automatically used if yarn.lock is present.</td></tr>
<tr><td>pnpm</td><td>System-installed pnpm. Automatically used if pnpm-lock.yaml is present.</td></tr>
<tr><td>staticRegistry</td><td>Checks versions from a static file. Must include the `--registry` option with the path to a JSON registry file.
<tr><td>staticRegistry</td><td>Checks versions from a file or url to a simple JSON registry. Must include the `--registry` option.
Example:
@@ -565,8 +565,8 @@ Usage:
Specify the registry to use when looking up package version numbers.
When `--packageManager staticRegistry` is set, `--registry` must specify a path to a JSON
registry file.
When `--packageManager staticRegistry` is set, `--registry` must specify a file path or url
to a simple JSON registry.
## target
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "npm-check-updates",
"version": "16.12.0",
"version": "16.12.1",
"author": "Tomas Junnonen <tomas1@gmail.com>",
"license": "Apache-2.0",
"contributors": [
4 changes: 2 additions & 2 deletions src/cli-options.ts
Original file line number Diff line number Diff line change
@@ -274,7 +274,7 @@ const extendedHelpPackageManager: ExtendedHelp = ({ markdown }) => {
['pnpm', `System-installed pnpm. Automatically used if pnpm-lock.yaml is present.`],
[
'staticRegistry',
`Checks versions from a static file. Must include the \`--registry\` option with the path to a JSON registry file.
`Checks versions from a file or url to a simple JSON registry. Must include the \`--registry\` option.
Example:
@@ -589,7 +589,7 @@ const cliOptions: CLIOption[] = [
description: 'Third-party npm registry.',
help: wrap(`Specify the registry to use when looking up package version numbers.
When \`--packageManager staticRegistry\` is set, \`--registry\` must specify a path to a JSON registry file.`),
When \`--packageManager staticRegistry\` is set, \`--registry\` must specify a file path or url to a simple JSON registry.`),
type: 'string',
},
{