Skip to content

Commit 0f9709b

Browse files
docs: drop stale npm install -g rescript + npx rescript-legacy -w refs (#67)
Follows panll#65 (npm→Deno migration) and panll#66 (docs sweep). - docs/developer-guide.md: remove global rescript install step; ReScript is now resolved via deno.json `npm:rescript@^12.0.0` on first `deno task res:build`. Reword surrounding prose to reflect this. - docs/guides/QUICKSTART-FOR-SON.md: `npx rescript-legacy -w` → `deno task res:watch`. Surfaced by panll#66 meander.
1 parent 2488ab4 commit 0f9709b

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

docs/developer-guide.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,10 @@ source $HOME/.cargo/env
9191
curl -fsSL https://deno.land/x/install/install.sh | sh
9292
export DENO_INSTALL="/home/$USER/.deno"
9393
export PATH="$DENO_INSTALL/bin:$PATH"
94-
95-
# Install ReScript
96-
npm install -g rescript
9794
```
9895

96+
ReScript is pinned in `deno.json` (`npm:rescript@^12.0.0`) and resolved on first `deno task res:build` — no global install required.
97+
9998
### Clone and Build
10099

101100
```bash

docs/guides/QUICKSTART-FOR-SON.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ On top of these, there are **overlay panels** you can open from the panel bar (v
1616
cd ~/Documents/hyperpolymath-repos/panll
1717

1818
# Terminal 1: Start the ReScript compiler (watches for changes)
19-
npx rescript-legacy -w
19+
deno task res:watch
2020

2121
# Terminal 2: Bundle the JS and serve
2222
just bundle && just serve:dev

0 commit comments

Comments
 (0)