Go to file
2024-04-17 00:03:11 +02:00
.github/workflows add bun to ci 2024-03-16 04:35:45 +01:00
fixtures add test for dual 2023-09-05 01:03:57 +02:00
snapshots update deps and lint fixes 2023-10-20 14:11:25 +02:00
.editorconfig misc tweaks 2022-08-25 01:13:46 +02:00
.eslintrc.yaml misc tweaks 2024-03-19 01:44:17 +01:00
.gitattributes misc tweaks 2024-03-19 01:44:17 +01:00
.gitignore add bun to ci 2024-03-16 04:35:45 +01:00
.ignore rename bin dir to dist 2024-03-09 05:51:05 +01:00
.npmrc switch to npm 2021-08-23 09:44:25 +02:00
Makefile re-add cjs shim 2024-03-21 18:01:06 +01:00
package-lock.json update deps 2024-04-13 20:16:14 +02:00
package.json update deps 2024-04-13 20:16:14 +02:00
README.md split docs 2024-04-09 01:54:15 +02:00
screenshot.png tweak screenshot 2020-07-14 23:05:32 +02:00
updates.config.js pin eslint 2024-04-09 01:51:26 +02:00
updates.js extract stripV func 2024-04-17 00:03:11 +02:00
updates.test.js update deps and lint fixes 2023-10-20 14:11:25 +02:00
vitest.config.js update deps 2024-04-13 20:16:14 +02:00

updates

updates is a CLI tool which checks for npm and poetry dependency updates of the current project and optionally updates package.json/pyproject.toml. It is highly configurable and is typically able to complete in less than a second.

Usage

With Node.js:

# check for updates
npx updates

# update package.json and install new dependencies
npx updates -u && npm i

With Bun:

# check for updates
bunx updates

# update package.json and install new dependencies
bunx updates -u && bun i

Options

See --help. Options that take multiple arguments can take them either via comma-separated value or by specifying the option multiple times.

If an option has a optional pkg argument but none is given, the option will be applied to all packages instead.

All pkg options support glob matching via picomatch or regex (on CLI, wrap the regex in slashes, e.g. '/^foo/').

Notes

The module uses global fetch under the hood. In Node.js HTTP proxies from environment are not supported, but it's still possible to enable updates to use them by installing the undici dependency into your project.

Config File

The config file is used to configure certain options of the module. CLI arguments have precedence over options in the config file, except for include and exclude options which are merged.

export default {
  exclude: [
    "semver",
    "@vitejs/*",
    /^react(-dom)?$/,
  ],
};

Config File Locations

The config file can be placed in these locations, relative to package.json:

  • updates.config.js
  • updates.config.mjs
  • .config/updates.js
  • .config/updates.mjs

Config File Options

  • include Array[String|Regexp]: Array of dependencies to include
  • exclude Array[String|Regexp]: Array of dependencies to exclude
  • types Array[String]: Array of dependency types
  • registry String: URL to npm registry

© silverwind, distributed under BSD licence