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
a good approach to capturing the patch would be similar to git add -p, where you get an interactive prompt for staging the patch. Given that you're already using git under the hood, this actually shouldn't be too much of an undertaking.
before: create simple patch
npx patch-package some-package
this will create one patch file in patches/some-package+1.2.3.patch
after: create multi patch
npx patch-package some-package --multi
this should
init a git repo in node_modules/some-package
copy old patches from patches/some-package/*.patch into the git repo
tell the user how to use the git repo:
ds300#43
The text was updated successfully, but these errors were encountered: