Replies: 1 comment 1 reply
-
Can’t you use meta-updater for this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is related to: #3027
I would like to use
package.json5
format. Mainly for adding comments to certain dependencies and for scripts. At the moment I use an adjacentpackage.json.md
file.In a large monorepo, the same fields are often repeated in every
package.json
file. Ideally,package.json
files would be generated.Nx already does this. It merges
package.json
andproject.json
when running a task.A lot of tools still rely on
package.json
such as IntelliJ. Sopackage.json
must always be kept up to date.When running
pnpm add|link|remove
, I'd like it to update mypackage.json5
file, but also mypackage.json
file.package.json
overpackage.json5
. A config option should be added for this: Prefer package.json5 over package.json #3027pnpm
makes. Something likewritePackage
inpnpmfile.js
.Example
pnpmfile.js
Beta Was this translation helpful? Give feedback.
All reactions