Skip to content

Commit b0d2a95

Browse files
committed
chore(mvt): fix stale run docs (bun to deno) and declare kernel export
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).
1 parent 6a2c82a commit b0d2a95

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

mvt/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ This directory is intentionally self-contained and dependency-free. The active r
1212

1313
```sh
1414
cd mvt
15-
bun test
16-
bun run serve
15+
deno task test
16+
deno task serve
1717
```
1818

1919
Then open `http://localhost:5173/`.

mvt/deno.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
33
"name": "@hyperpolymath/econosphere-mvt",
44
"version": "0.1.0",
5+
"exports": "./src/kernel/index.js",
56
"license": "MPL-2.0",
67
"tasks": {
78
"test": "deno test --allow-read tests/kernel/",

0 commit comments

Comments
 (0)