patchy-cli 0.0.5-pr.158.439bb2e → 0.0.5-pr.158.49004e0
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 +6 -6
package/README.md
CHANGED
|
@@ -35,11 +35,11 @@ Starting a patch-based fork of https://github.com/octocat/spoon-knife.
|
|
|
35
35
|
|
|
36
36
|
Create a folder for the fork: `mkdir spoon-knife-fork && cd spoon-knife-fork`
|
|
37
37
|
|
|
38
|
-
- [Install Patchy](#
|
|
38
|
+
- [Install Patchy](#installation)
|
|
39
39
|
- Run `patchy init`
|
|
40
40
|
- press enter to select all the default options
|
|
41
41
|
|
|
42
|
-
`patchy init` creates your config: `./patchy.json` ([full reference](#patchyjson))
|
|
42
|
+
`patchy init` creates your config: `./patchy.json` ([full reference](#patchyjson-reference))
|
|
43
43
|
```json5
|
|
44
44
|
{
|
|
45
45
|
"repo_url": "https://github.com/octocat/spoon-knife",
|
|
@@ -176,7 +176,7 @@ Precedence: CLI flags > Environment variables > `patchy.json`
|
|
|
176
176
|
|
|
177
177
|
## Patch file layout
|
|
178
178
|
|
|
179
|
-
The `patches/` directory (customizable via [`patches_dir`](#patchyjson)) uses the same folder structure as `repo_dir`:
|
|
179
|
+
The `patches/` directory (customizable via [`patches_dir`](#patchyjson-reference)) uses the same folder structure as `repo_dir`:
|
|
180
180
|
|
|
181
181
|
```
|
|
182
182
|
./
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.5-pr.158.
|
|
3
|
+
"version": "0.0.5-pr.158.49004e0",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
"url": "https://github.com/richardgill/patchy"
|
|
63
63
|
},
|
|
64
64
|
"optionalDependencies": {
|
|
65
|
-
"patchy-cli-linux-x64": "0.0.5-pr.158.
|
|
66
|
-
"patchy-cli-linux-arm64": "0.0.5-pr.158.
|
|
67
|
-
"patchy-cli-darwin-x64": "0.0.5-pr.158.
|
|
68
|
-
"patchy-cli-darwin-arm64": "0.0.5-pr.158.
|
|
69
|
-
"patchy-cli-windows-x64": "0.0.5-pr.158.
|
|
65
|
+
"patchy-cli-linux-x64": "0.0.5-pr.158.49004e0",
|
|
66
|
+
"patchy-cli-linux-arm64": "0.0.5-pr.158.49004e0",
|
|
67
|
+
"patchy-cli-darwin-x64": "0.0.5-pr.158.49004e0",
|
|
68
|
+
"patchy-cli-darwin-arm64": "0.0.5-pr.158.49004e0",
|
|
69
|
+
"patchy-cli-windows-x64": "0.0.5-pr.158.49004e0"
|
|
70
70
|
},
|
|
71
71
|
"publishConfig": {
|
|
72
72
|
"access": "public"
|