patchy-cli 0.0.17-pr.219.a1529ad → 0.0.17-pr.219.fcee9f7

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 +4 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -260,17 +260,18 @@ Note: `patchy generate` is destructive and will remove any unneeded files in the
260
260
 
261
261
  ### `patchy apply`
262
262
 
263
- Apply patch files from `patches/` into `target_repo`. Patch sets are applied in alphabetical order.
263
+ Apply patch files from `patches/` into `target_repo`. Patch sets are applied in alphabetical order, with each patch set committed automatically.
264
264
 
265
265
  ```sh
266
- patchy apply [--only <patch-set>] [--until <patch-set>] [--auto-commit=<mode>] [--target-repo] [--patches-dir] [--dry-run]
266
+ patchy apply [--only <patch-set>] [--until <patch-set>] [--all] [--edit] [--target-repo] [--patches-dir] [--dry-run]
267
267
  ```
268
268
 
269
269
  | Flag | Description |
270
270
  |------|-------------|
271
271
  | `--only <name>` | Apply only the specified patch set |
272
272
  | `--until <name>` | Apply patch sets up to and including the specified one |
273
- | `--auto-commit=<mode>` | Control auto-commit behavior: `all` (commit everything), `interactive` (prompt on last, default), `skip-last` (leave last uncommitted), `off` (commit nothing) |
273
+ | `--all` | Commit all patch sets without prompting |
274
+ | `--edit` | Leave the last patch set uncommitted for manual review |
274
275
 
275
276
  ### `patchy repo reset`
276
277
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchy-cli",
3
- "version": "0.0.17-pr.219.a1529ad",
3
+ "version": "0.0.17-pr.219.fcee9f7",
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.17-pr.219.a1529ad",
68
- "patchy-cli-linux-arm64": "0.0.17-pr.219.a1529ad",
69
- "patchy-cli-darwin-x64": "0.0.17-pr.219.a1529ad",
70
- "patchy-cli-darwin-arm64": "0.0.17-pr.219.a1529ad",
71
- "patchy-cli-windows-x64": "0.0.17-pr.219.a1529ad"
67
+ "patchy-cli-linux-x64": "0.0.17-pr.219.fcee9f7",
68
+ "patchy-cli-linux-arm64": "0.0.17-pr.219.fcee9f7",
69
+ "patchy-cli-darwin-x64": "0.0.17-pr.219.fcee9f7",
70
+ "patchy-cli-darwin-arm64": "0.0.17-pr.219.fcee9f7",
71
+ "patchy-cli-windows-x64": "0.0.17-pr.219.fcee9f7"
72
72
  },
73
73
  "publishConfig": {
74
74
  "access": "public"