IDE is a project made for learning
Name | Command | Equivalent |
---|---|---|
dev | bun run dev | turbo run dev |
build | bun run build | turbo run build |
start | bun run start | turbo run start |
- Deps and package manager Bun
- Monorepo and tools Turborepo
- Ensuring conventional changelog with Commitlint
- Made with Starlight
Adding a shared package into the packages
folder after the first run of a bun install
could cause troubles while installing the dependencies again.
An error similar to the following could appear: workspace dependency "{package name}" not found
When this appears, make sure you have correctly referenced the package name in every apps/**/package.json
that needs it.
If that's the case, then the only workaround to that is to remove bun.lockb
file, remove the global cache and then install dependencies again.
Remove Bun lockfile:
rm -f bun.lockb
Clear Bun's global cache:
bun pm cache rm
Install dependencies again:
bun install
Contact one of the maintainers in case the issue persists.