patchy-cli 0.0.6-pr.170.f111bfa → 0.0.6-pr.171.cbb3a35
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 +3 -3
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -83,9 +83,9 @@ Patchy will prompt you to create your first **patch set**, let's name it: 'first
|
|
|
83
83
|
│ ├── path/to/existingFile.txt
|
|
84
84
|
│ └── path/to/newFile.txt
|
|
85
85
|
├── patches/
|
|
86
|
-
│ └── 001-first-patch-set/
|
|
87
|
-
│ ├── path/to/existingFile.txt.diff
|
|
88
|
-
│ └── path/to/newFile.txt
|
|
86
|
+
│ └── 001-first-patch-set/ (created)
|
|
87
|
+
│ ├── path/to/existingFile.txt.diff (generated)
|
|
88
|
+
│ └── path/to/newFile.txt (generated)
|
|
89
89
|
└── patchy.json
|
|
90
90
|
```
|
|
91
91
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.6-pr.
|
|
3
|
+
"version": "0.0.6-pr.171.cbb3a35",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"changeset-version": "changeset version",
|
|
21
21
|
"dev": "bun run src/cli.ts",
|
|
22
22
|
"knip": "knip-bun",
|
|
23
|
+
"lint-versions": "syncpack lint",
|
|
23
24
|
"local-ci": "bun run scripts/local-ci.ts",
|
|
24
25
|
"prepare": "[ -n \"$CI\" ] || lefthook install",
|
|
25
26
|
"typecheck": "tsgo --noEmit",
|
|
@@ -36,10 +37,11 @@
|
|
|
36
37
|
"bun-types": "=1.3.4",
|
|
37
38
|
"knip": "=5.73.4",
|
|
38
39
|
"lefthook": "=2.0.11",
|
|
40
|
+
"syncpack": "=13.0.4",
|
|
39
41
|
"typescript": "=5.9.3"
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
|
-
"@clack/prompts": "1.0.0-alpha.8",
|
|
44
|
+
"@clack/prompts": "=1.0.0-alpha.8",
|
|
43
45
|
"@stricli/core": "=1.2.4",
|
|
44
46
|
"chalk": "=5.6.2",
|
|
45
47
|
"diff": "=8.0.2",
|
|
@@ -62,11 +64,11 @@
|
|
|
62
64
|
"url": "https://github.com/richardgill/patchy"
|
|
63
65
|
},
|
|
64
66
|
"optionalDependencies": {
|
|
65
|
-
"patchy-cli-linux-x64": "0.0.6-pr.
|
|
66
|
-
"patchy-cli-linux-arm64": "0.0.6-pr.
|
|
67
|
-
"patchy-cli-darwin-x64": "0.0.6-pr.
|
|
68
|
-
"patchy-cli-darwin-arm64": "0.0.6-pr.
|
|
69
|
-
"patchy-cli-windows-x64": "0.0.6-pr.
|
|
67
|
+
"patchy-cli-linux-x64": "0.0.6-pr.171.cbb3a35",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.6-pr.171.cbb3a35",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.6-pr.171.cbb3a35",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.6-pr.171.cbb3a35",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.6-pr.171.cbb3a35"
|
|
70
72
|
},
|
|
71
73
|
"publishConfig": {
|
|
72
74
|
"access": "public"
|