updates
Version:
Flexible npm and poetry dependency update tool
64 lines (43 loc) • 2.03 kB
Markdown
# updates
[](https://www.npmjs.org/package/updates) [](https://www.npmjs.org/package/updates) [](https://packagephobia.com/result?p=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
```bash
# check for updates
npx updates
# update package.json and install new dependencies
npx updates -u && npm i
```
## Bun and Deno
```bash
bunx updates
deno run -A npm:updates
```
## 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](https://github.com/micromatch/picomatch) or regex (on CLI, wrap the regex in slashes, e.g. `'/^foo/'`).
## 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.
```js
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](https://github.com/silverwind), distributed under BSD licence