updates 16.5.1 → 16.5.3
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 +7 -6
- package/dist/index.js +258 -258
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|

|
|
5
5
|
|
|
6
|
-
`updates` is a CLI tool which checks for dependency updates. It is typically able to complete in less than a second.
|
|
6
|
+
`updates` is a CLI tool which checks for dependency updates. It is typically able to complete in less than a second.
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
8
|
+
# Supported files
|
|
9
|
+
|
|
10
|
+
- `package.json`: supports all npm package managers
|
|
11
|
+
- `pyproject.toml`: supports formats of `uv` and `poetry`
|
|
12
|
+
- `go.mod`: experimental go support. updating is not implemented and file will not be discovered in directory mode.
|
|
12
13
|
|
|
13
14
|
# Usage
|
|
14
15
|
|
|
@@ -30,7 +31,7 @@ All `pkg` options support glob matching via [picomatch](https://github.com/micro
|
|
|
30
31
|
|
|
31
32
|
The config file is used to configure certain options of the module. It is placed at `updates.config.{js,ts,mjs,mts}` or `.config/updates.config.{js,ts,mjs,mts}`, relative to `package.json` / `pyproject.toml` / `go.mod`.
|
|
32
33
|
|
|
33
|
-
Since Node.js
|
|
34
|
+
Since Node.js v22.18.0, typescript configuration files work out of the box. For older node versions, set `NODE_OPTIONS="--experimental-strip-types"` in your environment.
|
|
34
35
|
|
|
35
36
|
```ts
|
|
36
37
|
export default {
|