-
-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"There don't appear to be any changes" even though there are #128
Comments
Package.json files are ignored by default because npm adds absolute paths into them when installing packages so it creates noise. See https://github.com/ds300/patch-package/blob/master/README.md#options for how to configure what to ignore. |
Okay, thank you for the answer. I ended up using a different way to patch. |
What way? :D |
I forked the project and released the patched fork on npm. |
I am having same issue getting ("There don't appear to be any changes") with trying to patch |
any answers? having the same issue on a .ts file! |
Had the same issue patching I had
which I changed to
Now I have the content that I need, I just have to make |
@ds300 I tried using Regardless, I applied the method suggested by @reyraa and that worked for me |
I also have this problem, I tried |
This seems to work: |
@semiaddict Thanks for the solution. It totally worked for me! |
I used this, if you only have changes in package.json, and you still want to ignore package-lock.json: npx patch-package package-name --exclude "" --include package.json |
@bertyhell your solution didn't work for me for some reason but @semiaddict 's did |
This is my first time trying to use patch-package. I followed the instructions, but it doesn't recognize my changes. What am I doing wrong? More details below.
"postinstall": "patch-package"
insidescripts
inside my project'spackage-json
.npm i patch-package
node_modules/react-simple-infinite-scroll/package.json
.npx patch-package infinite-scroll
I'm seeing this:
I'm guessing patch-package doesn't support me modifying
package.json
inside a node module?The text was updated successfully, but these errors were encountered: