@antongolub/lockfile 0.0.0-snapshot.24 → 0.0.0-snapshot.26

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -62,10 +62,10 @@ idx.edges
62
62
 
63
63
  ### CLI
64
64
  ```shell
65
- npx @antongolub/lockfile <cmd> [options]
65
+ npx @antongolub/lockfile@snapshot <cmd> [options]
66
66
 
67
- npx @antongolub/lockfile parse --input=yarn.lock,package.json --output=snapshot.json
68
- npx @antongolub/lockfile format --input=snapshot.json --output=yarn.lock
67
+ npx @antongolub/lockfile@snapshot parse --input=yarn.lock,package.json --output=snapshot.json
68
+ npx @antongolub/lockfile@snapshot format --input=snapshot.json --output=yarn.lock
69
69
  ```
70
70
 
71
71
  | Command / Option | Description |
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@antongolub/lockfile",
3
- "version": "0.0.0-snapshot.24",
3
+ "version": "0.0.0-snapshot.26",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "description": "Read and write lockfiles with reasonable losses",
8
- "main": "target/cjs/index.cjs",
8
+ "bin": "./target/cjs/cli.cjs",
9
+ "main": "./target/cjs/index.cjs",
9
10
  "exports": {
10
11
  ".": {
11
12
  "types": "./target/dts/index.d.ts",