From c44888aead4049e72bafb2a9cd0445c087cbf0e2 Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Tue, 5 Dec 2023 13:55:11 +0900 Subject: [PATCH] chore: update helper script from full project builds The script was still using pnpm in places and the custom highlighting component wasn't built before building the full book. --- Justfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 161f912..8ca353a 100644 --- a/Justfile +++ b/Justfile @@ -4,8 +4,10 @@ _default: # Build all crates and other parts of the project build: cargo build --release + bun install + cd book/highlight && bun run build cd book && just build - cd vscode-extension && pnpm run package + cd vscode-extension && bun run package # Run the benchmarks bench: