feat: add flake app, dev shell, direnv, and checks (task 0002)

Layer the remaining flake outputs onto the build: a default app pointing at
the compiled binary, a dev shell exposing the pinned Bun, biome, and bun2nix,
a `use flake` .envrc for direnv, and a checks set aggregating the Bun test
tiers, a build-seam smoke check against the Nix-built binary, and biome lint
through the treefmt-nix flake-parts module.

The dev shell and the build share the one pinned nixpkgs-bun input so Bun
cannot drift between them. treefmt's biome reuses the repo's biome.json with
VCS disabled for the sandbox, and packages/core/src/index_test.ts is
reformatted by biome so the new lint gate is green.
This commit is contained in:
2026-07-25 22:13:11 -04:00
parent 09b9d432c2
commit 135ec392ff
6 changed files with 151 additions and 7 deletions

View File

@@ -36,8 +36,12 @@ describe("parser", () => {
});
describe("raw fallbacks", () => {
test.todo("preserves an unmodelled block (e.g. a GFM table) as a RawBlock with verbatim source");
test.todo("preserves an unmodelled inline (e.g. strikethrough) as a RawInline with verbatim source");
test.todo(
"preserves an unmodelled block (e.g. a GFM table) as a RawBlock with verbatim source",
);
test.todo(
"preserves an unmodelled inline (e.g. strikethrough) as a RawInline with verbatim source",
);
});
describe("ingredient annotations", () => {