Skip to content

Commit c7125ff

Browse files
committed
fix: add nx & turbo to install script
1 parent 32dc032 commit c7125ff

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/setup.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ YARN_ENABLE_IMMUTABLE_INSTALLS=false
55

66
# Install Package Managers & Benchmark Tools
77
cargo install hyperfine --quiet
8-
npm install -g npm@latest vlt@latest bun@latest deno@latest --silent
8+
npm install -g npm@latest vlt@latest bun@latest deno@latest nx@latest turbo@latest --silent
99
corepack enable yarn pnpm
1010

1111
# Create Results Directory
@@ -19,6 +19,8 @@ BERRY_VERSION="$(corepack yarn@latest -v)"
1919
PNPM_VERSION="$(corepack pnpm@latest -v)"
2020
BUN_VERSION="$(bun -v)"
2121
DENO_VERSION="$(npm view deno@latest version)"
22+
NX_VERSION="$(npm view nx@latest version)"
23+
TURBO_VERSION="$(npm view turbo@latest version)"
2224

2325
echo "npm: $NPM_VERSION"
2426
echo "vlt: $VLT_VERSION"
@@ -27,5 +29,7 @@ echo "berry: $BERRY_VERSION"
2729
echo "pnpm: $PNPM_VERSION"
2830
echo "bun: $BUN_VERSION"
2931
echo "deno: $DENO_VERSION"
32+
echo "nx: $NX_VERSION"
33+
echo "turbo: $TURBO_VERSION"
3034

31-
echo "{ npm: \"$NPM_VERSION\", vlt: \"$VLT_VERSION\", yarn: \"$YARN_VERSION\", berry: \"$BERRY_VERSION\", pnpm: \"$PNPM_VERSION\", bun: \"$BUN_VERSION\", deno: \"$DENO_VERSION\" }" > ./results/versions.json
35+
echo "{ npm: \"$NPM_VERSION\", vlt: \"$VLT_VERSION\", yarn: \"$YARN_VERSION\", berry: \"$BERRY_VERSION\", pnpm: \"$PNPM_VERSION\", bun: \"$BUN_VERSION\", deno: \"$DENO_VERSION\", nx: \"$NX_VERSION\", turbo: \"$TURBO_VERSION\" }" > ./results/versions.json

0 commit comments

Comments
 (0)