Commit Graph

4 Commits

Author SHA1 Message Date
ruinivist 7bfa1051c3 chore: strip repository to provide a minimal reproduction of bun code splitting bug
Removes all server-side code, tests, CI pipelines, Docker config, extra CSS, and sidebar logic. Modifies `App.tsx` to just eagerly load and render `<Excalidraw />`. Modifies `package.json` to only contain a basic build command to reproduce the bug where Bun injects a dynamic chunk rather than the entrypoint chunk.
2026-05-30 17:59:06 +00:00
ruinivist be361e3896 Add minimal reproduction script for bun code splitting bug
Adds `repro.ts`, a self-contained script that:
- Generates an HTML entrypoint, a main TS entrypoint, and thousands of dynamically imported chunks.
- Runs `bun build --splitting` against the generated structure.
- Parses the output `index.html` to confirm whether the injected script matches the main entrypoint or a random chunk.
- Updates `.gitignore` to safely ignore the temporary artifacts (`bun-repro-dir`).
2026-05-30 17:42:36 +00:00
ruinivist 5f182ec302 chore: gitingore 2026-05-24 18:53:24 +00:00
ruinivist 1eb5350d09 init 2026-05-24 15:32:36 +00:00