From 059fb8ce675a9012c4db4e624450063ece008649 Mon Sep 17 00:00:00 2001 From: Jay Little Date: Fri, 5 Dec 2025 10:00:59 -0500 Subject: [PATCH] Run `bun install` in prebuild to install dependencies prebuild is invoked when you run `bun run build` so this will install dependencies and make the build command work --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index f9a27c7..0b93cab 100644 --- a/package.json +++ b/package.json @@ -46,6 +46,7 @@ "dev": "vite --port 8000", "demo": "node demo/bin/demo.js", "demo:dev": "node demo/bin/demo.js --dev", + "prebuild": "bun install", "build": "bun run clean && bun run build:wasm && bun run build:lib && bun run build:wasm-copy", "build:wasm": "./scripts/build-wasm.sh", "build:lib": "vite build",