patchy-cli 0.0.7-pr.173.36e26cc → 0.0.7
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 +6 -6
package/README.md
CHANGED
|
@@ -199,7 +199,7 @@ The `patches/` directory (customizable via [`patches_dir`](#patchyjson-reference
|
|
|
199
199
|
│ └── path/to/newFile.txt (added)
|
|
200
200
|
└── patchy.json
|
|
201
201
|
```
|
|
202
|
-
Patches are grouped into **patch sets** for organizing related changes. Patch sets
|
|
202
|
+
Patches are grouped into **patch sets** for organizing related changes. Patch sets apply in alphabetical order. Use numeric prefixes (e.g., `001-auth`, `002-ui`).
|
|
203
203
|
|
|
204
204
|
**Two types of patch files:**
|
|
205
205
|
- **`.diff` files** — For modified existing files (generated via `git diff HEAD`)
|
|
@@ -214,7 +214,7 @@ Patches are grouped into **patch sets** for organizing related changes. Patch se
|
|
|
214
214
|
Generate `.diff` files and new files into `./patches/<patch-set>/` based on current `git diff` in `target_repo`.
|
|
215
215
|
|
|
216
216
|
```sh
|
|
217
|
-
patchy generate [--patch-set] [--target-repo] [--patches-dir] [--dry-run]
|
|
217
|
+
patchy generate [--patch-set <name>] [--target-repo] [--patches-dir] [--dry-run]
|
|
218
218
|
```
|
|
219
219
|
|
|
220
220
|
If `--patch-set` is not provided (and not set via env/config), prompts to select an existing patch set or create a new one.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.7
|
|
3
|
+
"version": "0.0.7",
|
|
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.7
|
|
68
|
-
"patchy-cli-linux-arm64": "0.0.7
|
|
69
|
-
"patchy-cli-darwin-x64": "0.0.7
|
|
70
|
-
"patchy-cli-darwin-arm64": "0.0.7
|
|
71
|
-
"patchy-cli-windows-x64": "0.0.7
|
|
67
|
+
"patchy-cli-linux-x64": "0.0.7",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.7",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.7",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.7",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.7"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|