-
Notifications
You must be signed in to change notification settings - Fork 238
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
Support package.json5 #1633
Comments
Until node supports serialization and deserialization of a format natively, package managers shouldn’t, and it’s a mistake for pnpm to do so - especially if it could end up being published. |
That's wild, and I am broadly inclined to agree with @ljharb here—the interop hazards here seem pretty significant to me. Node has a ton of things that it does differently in the presence vs. absence of a |
I suppose it heavily depends on the usage patterns. Some people work on dozens / hundreds of libraries and the interop hazard is higher. Some people (like me) never do anything that would end up on npm. So I'd definitely appreciate being able to opt into (On the broader topic of whether it's a hazard to the ecosystem — unfortunately I have no idea.) |
Having some kind of opt-in mode would definitely make it more viable, but even beyond that: I tagged it as an enhancement and am leaving it open because while I see the hazards (as described above) Volta also tries to Just Work™ with the ecosystem as it actually is, so my opinion about what package managers should do may end up being different from what Volta should do! |
For the record, there was a feature request on supporting JSON5 on Node, but it was closed a few years ago (the issue is still active, though): nodejs/node#40714 There's also an RFC on allowing comments on JSON through other means than JSON5 on NPM, but it doesn't seem to be getting far either: npm/rfcs#291 |
pnpm allows using
package.json5
instead ofpackage.json
. The killer feature is that it supports comments.https://docs.rs/json5format/0.2.6/json5format/ could be used to read/write json5 while preserving comments.
The text was updated successfully, but these errors were encountered: