+800 more tests from the Node.js test suite run on every commit of Bun.
if it works in Node.js and doesn't work in Bun, then please file an issue in Bun's github repository. It's our job to make sure everything that works in Node also works in Bun.
`bun install` now automatically migrates lockfiles from pnpm, yarn v1, and npm - while keeping your resolved dependency versions intact.
This lets you try `bun install` in existing projects with zero extra configuration
Isolated installs eliminate phantom dependencies in monorepos, and for workspaces it's now the default installation method for `bun install` (instead of "hoisted")
To configure this in bunfig.toml:
```
[install]
linker = "isolated"
# linker = "hoisted"
```