bun
bun copied to clipboard
After `bun install`, package.json has weird formatting
Before
{
"dependencies": {},
}
After
{
"dependencies": { "@actions/core": "^1.10.0" },
}
It should look like this instead:
{
"dependencies": {
"@actions/core": "^1.10.0"
},
}
any news? Tabs auto convert to 2 spaces
Yeah this is actually quite annoying; if I have Prettier set to tabs but use bun add|install via the command line, it'll convert my tabs to spaces, requiring a re-format of package.json. It's trivial, but not very ergonomic.