patchy-cli 0.0.15-pr.211.92dbf01 → 0.0.16
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 +4 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -221,10 +221,10 @@ Patch sets can include executable scripts that run before and after patches are
|
|
|
221
221
|
```
|
|
222
222
|
patches/
|
|
223
223
|
└── 001-add-feature/
|
|
224
|
-
├── patchy-pre-apply # runs before patches
|
|
225
224
|
├── patchy-post-apply # runs after patches
|
|
226
225
|
├── src/file.ts.diff
|
|
227
|
-
|
|
226
|
+
├── src/new-file.ts
|
|
227
|
+
└── patchy-pre-apply # runs before patches
|
|
228
228
|
```
|
|
229
229
|
|
|
230
230
|
### Hook execution
|
|
@@ -238,11 +238,11 @@ patches/
|
|
|
238
238
|
|
|
239
239
|
```jsonc
|
|
240
240
|
{
|
|
241
|
-
"hook_prefix": "
|
|
241
|
+
"hook_prefix": "my-prefix-" // Override: --hook-prefix | env: PATCHY_HOOK_PREFIX
|
|
242
242
|
}
|
|
243
243
|
```
|
|
244
244
|
|
|
245
|
-
With prefix `
|
|
245
|
+
With prefix `my-prefix-`, hooks are named `my-prefix-pre-apply` and `my-prefix-post-apply`.
|
|
246
246
|
|
|
247
247
|
## Commands
|
|
248
248
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"url": "https://github.com/richardgill/patchy"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"patchy-cli-linux-x64": "0.0.
|
|
68
|
-
"patchy-cli-linux-arm64": "0.0.
|
|
69
|
-
"patchy-cli-darwin-x64": "0.0.
|
|
70
|
-
"patchy-cli-darwin-arm64": "0.0.
|
|
71
|
-
"patchy-cli-windows-x64": "0.0.
|
|
67
|
+
"patchy-cli-linux-x64": "0.0.16",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.16",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.16",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.16",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.16"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|