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