chore(mvt): fix stale run docs (bun→deno) + declare kernel export#76
Merged
Conversation
The README told contributors to run `bun test` / `bun run serve`, but bun is not installed and the repo language policy bans it (Deno replaces Node/npm/bun). The real entry points are the `deno task` definitions in deno.json, so the docs now say `deno task test` / `deno task serve`. deno.json gains an `exports` field pointing at the active kernel (src/kernel/index.js), which both silences Deno's "exports field should be specified when specifying a name" warning and declares the public entry the README already documents as importable. No mechanics changed; the 6 kernel tests remain green (deno task test).
|
hyperpolymath
marked this pull request as ready for review
July 20, 2026 13:44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Two pure-correctness hygiene fixes to the
mvt/prototype — no game mechanics touched. The 6 kernel tests stay green (deno task test).What & why
mvt/README.md— the "Run" block saidbun test/bun run serve.bunisn't installed and the repo language policy bans it (Deno replaces Node/npm/bun). Replaced with the real entry points, thedeno taskdefinitions already indeno.json:deno task test/deno task serve.mvt/deno.json— added"exports": "./src/kernel/index.js". This silences Deno's"exports" field should be specified when specifying a "name"warning and declares the public entry the README already documents as independently importable (the activemvt-public-goods-kernel).Verification
deno task test→6 passed | 0 failed, and theexportswarning is gone.🤖 Generated with Claude Code