patchy-cli 0.0.19 → 0.0.20-pr.224.5b1fdcb
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 +1 -1
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ A CLI for generating and applying patches to git repositories.
|
|
|
19
19
|
|
|
20
20
|
A traditional fork means maintaining a separate repository or long-lived branch. Over time, your history diverges from upstream, which can make updates painful.
|
|
21
21
|
|
|
22
|
-
With patches, you store changes as `.diff` files
|
|
22
|
+
With patches, you store your changes as `.diff` files. You can inspect them, edit them, and apply them to a fresh clone of the repo.
|
|
23
23
|
|
|
24
24
|
## What is Patchy?
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20-pr.224.5b1fdcb",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -64,14 +64,13 @@
|
|
|
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.20-pr.224.5b1fdcb",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.20-pr.224.5b1fdcb",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.20-pr.224.5b1fdcb",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.20-pr.224.5b1fdcb",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.20-pr.224.5b1fdcb"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
|
-
}
|
|
76
|
-
"packageManager": "bun@1.3.4"
|
|
75
|
+
}
|
|
77
76
|
}
|