Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,12 @@ npm install -g npm@latest corepack@latest vlt@latest bun@latest deno@latest nx@l
# Install Vite+ (vp) via npm (available as the `vite-plus` package)
npm install -g vite-plus@latest

# Install aube via npm (available as the `@endevco/aube` package)
npm install -g @endevco/aube@latest
# Install aube via npm (available as the `@endevco/aube` package).
# Non-fatal: aube may not have a working binary for all platforms (e.g. arm64).
# If it fails to install, the benchmark suite continues without aube.
if ! npm install -g @endevco/aube@latest 2>/dev/null; then
echo "Warning: aube installation failed (may not support this platform) — skipping aube benchmarks"
fi

# Configure Package Managers
echo "Configuring package managers..."
Expand Down
Loading