https://github.com/tobua/bun-biome-rsbuild
Simple setup to try Bun, Biome/OXC and Rsbuild.
https://github.com/tobua/bun-biome-rsbuild
Last synced: about 2 months ago
JSON representation
Simple setup to try Bun, Biome/OXC and Rsbuild.
- Host: GitHub
- URL: https://github.com/tobua/bun-biome-rsbuild
- Owner: tobua
- Created: 2023-12-13T21:23:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-16T17:43:12.000Z (about 1 year ago)
- Last Synced: 2025-03-26T03:41:40.217Z (2 months ago)
- Language: TypeScript
- Homepage: https://onwebfocus.com/bun
- Size: 359 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bun, Biome/OXC and Rsbuild Setup
Example setup with Bun, Biome and Rsbuild. To use Biome and OXC features in the editor install the [Biome VS Code extension](https://marketplace.visualstudio.com/items?itemName=biomejs.biome) and the [OXC VS Code extension](https://marketplace.visualstudio.com/items?itemName=oxc.oxc-vscode).
```sh
# Develop (Opens page in browser)
bun start
# Build
bun run build
# Preview (Serves current build)
bun preview
# Format and Lint (Biome)
bun check:biome
# Lint (OXLint)
bun lint:oxlint
# Test with Bun
bun run test
# Check types with TypeScript
bun types
```## Notes
The Biome VS Code extension will fail to initialize if the `@biomejs/biome` dependency isn't available in the first workspace project. If you have other projects open in your workspace the workaround is to open this project in a separate window.