Skip to content

Commit 49948da

Browse files
committed
Update docs
1 parent 3f9fff9 commit 49948da

3 files changed

Lines changed: 12 additions & 13 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ jobs:
2525
show-progress: false
2626
fetch-depth: 0
2727

28-
- uses: oven-sh/setup-bun@v2
28+
- uses: actions/setup-node@v4
2929
with:
30-
bun-version: latest
30+
node-version: 24.x
31+
cache: npm
3132

3233
- run: npm ci
3334
- run: npm run ci

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,23 +76,22 @@ $EDITOR config.json
7676

7777
Mit Hot-Reload:
7878
```sh
79-
bun watch
79+
npm run watch
8080
```
8181

8282
Ohne Hot-Reload:
8383
```sh
84-
bun start
84+
npm start
8585
```
8686

8787
### Housekeeping
8888
Formatieren und Linten passiert durch lefthook automatisch beim Committen/Pushen. Manuell kannst du das machen:
89-
- Formatieren: `bun format`
90-
- Linten: `bun lint`
91-
- Fixbare Linter-Fehler automatisch fixen: `bun lint:fix`
92-
- Fixbare, aber möglicherweise falsche Fixes anwenden: `bun lint:fix:unsafe`
93-
- CI-Checks lokal laufen lassen: `bun ci`
94-
- Unit-Tests ausführen: `bun test`
95-
- Nur Tests, die auf ein Pattern matchen: `bun test <pattern>` (z. B. `bun test smoke`)
89+
- Formatieren: `npm run format`
90+
- Linten: `npm run lint`
91+
- Fixbare Linter-Fehler automatisch fixen: `npm run lint:fix`
92+
- Fixbare, aber möglicherweise falsche Fixes anwenden: `npm run lint:fix:unsafe`
93+
- CI-Checks lokal laufen lassen: `npm run ci`
94+
- Unit-Tests ausführen: `npm test`
9695

9796
## ❄ Nix
9897
Entweder via `nix-shell` oder `nix develop` letzteres benötigt Nix-Flake support.

flake.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@
1515
{
1616
devShell = pkgs.mkShell {
1717
buildInputs = with pkgs; [
18-
bun
1918
nixpkgs-fmt
2019
pixman
2120
pkg-config
2221
cairo
2322
pango
2423
biome
25-
nodejs_22
24+
nodejs_24
2625
typescript
2726
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
2827
CoreText

0 commit comments

Comments
 (0)