support changing package.json
See original GitHub issueHi!
I make some changes in package.json
file, add exports field
but patch-package
doesn’t see any changes in it
Issue Analytics
- State:
- Created 3 years ago
- Reactions:14
- Comments:11 (1 by maintainers)
Top Results From Across the Web
package.json - npm Docs
Changes to the package should come along with changes to the version. If you don't plan to publish your package, the name and...
Read more >How do I apply changes in package-lock and package json?
Run command npm i. or npm install --save. npm i command will install all your dependencies into your local machine which are available...
Read more >How to update package.json - Educative.io
Updating packages to the most recent major version Doing so will update the version numbers specified in the front of each package, hence...
Read more >Updating Dependencies in `package.json` - Sentry
According to the documentation: npm-check-updates upgrades your package. json dependencies to the latest versions, ignoring specified versions.
Read more >What Is package.json? | heynode.com
You can always edit your package.json manually in your text editor and make changes. That works well for most fields, so long as...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
does adding
--exclude
at the end of the command make it work?@hazem3500 I previously tried with
--exclude ""
which didn’t work. I have no idea why--exclude
would be any better, but it did the trick. Thanks