You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+121-10
Original file line number
Diff line number
Diff line change
@@ -61,13 +61,15 @@ files.
61
61
62
62
### yarn v2+
63
63
64
-
yarn 2+ have native support for patching dependencies via [`yarn patch`](https://yarnpkg.com/cli/patch).
65
-
You do not need to use patch-package on these projects.
64
+
yarn 2+ have native support for patching dependencies via
65
+
[`yarn patch`](https://yarnpkg.com/cli/patch). You do not need to use
66
+
patch-package on these projects.
66
67
67
68
### pnpm
68
69
69
-
pnpm has native support for patching dependencies via [`pnpm patch`](https://pnpm.io/cli/patch).
70
-
You do not need to use patch-package on these projects.
70
+
pnpm has native support for patching dependencies via
71
+
[`pnpm patch`](https://pnpm.io/cli/patch). You do not need to use patch-package
72
+
on these projects.
71
73
72
74
### Heroku
73
75
@@ -88,30 +90,38 @@ details.
88
90
Otherwise if you update a patch then the change may not be reflected on
89
91
subsequent CI runs.
90
92
91
-
92
93
### CircleCI
93
-
Create a hash of your patches before loading/saving your cache. If using a Linux machine, run `md5sum patches/* > patches.hash`. If running on a macOS machine, use `md5 patches/* > patches.hash`
94
+
95
+
Create a hash of your patches before loading/saving your cache. If using a Linux
96
+
machine, run `md5sum patches/* > patches.hash`. If running on a macOS machine,
97
+
use `md5 patches/* > patches.hash`
98
+
94
99
```yaml
95
100
- run:
96
101
name: patch-package hash
97
102
command: md5sum patches/* > patches.hash
98
103
```
99
104
100
105
Then, update your hash key to include a checksum of that file:
0 commit comments