From 882a2cfd30aeb554886abe8979a5e73953c6654c Mon Sep 17 00:00:00 2001 From: Gabriel Lisboa Date: Mon, 13 Apr 2026 14:19:12 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20docs:=20add=20missing=20build=20?= =?UTF-8?q?step=20to=20quick=20start?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit README's quick start went bun install -> bun start, but bun start runs bun dist/index.js and dist/ does not exist after a fresh install, so the first run fails with "Module not found dist/index.js". Insert a bun run build step between install and start. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 154e1c3..2b5aea5 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,12 @@ Everything above the plugin line is the **tiny core**. Channels, extra providers bun install ``` +### Build + +```bash +bun run build +``` + ### Run ```bash