Skip to content

Commit 41ee053

Browse files
committed
refactor: remove Bun artifacts and convert remaining Bun APIs
- Remove @types/bun, bun.lock, docs/bun.lock, bunfig.toml - Remove .cursor/rules/bun-cli.mdc (outdated) - Convert Bun.spawn → node:child_process in local/run.ts - Convert Bun.sleep → node:timers/promises in local/server.ts - Remove spawn/sleep polyfills from node-polyfills.ts - Add src/global.d.ts for Worker and RegExp.escape types - Remove isBun guards from tests (now run on Node)
1 parent 2a62159 commit 41ee053

14 files changed

Lines changed: 91 additions & 2956 deletions

File tree

.cursor/rules/bun-cli.mdc

Lines changed: 0 additions & 304 deletions
This file was deleted.

biome.jsonc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
"./lint-rules/no-stderr-write-in-commands.grit"
1111
],
1212
"files": {
13-
"includes": ["!docs", "!test/init-eval/templates"]
13+
// custom-ca.ts excluded: Biome's type analysis hits the 200k type limit
14+
// on the node:tls module graph — an internal Biome bug that surfaces
15+
// non-deterministically as error vs warning. See biome issue tracker.
16+
"includes": ["!docs", "!test/init-eval/templates", "!!src/lib/custom-ca.ts"]
1417
},
1518
"javascript": {
1619
"globals": ["Bun"]

0 commit comments

Comments
 (0)