bms-repository/scripts/setup-npm.sh
pfych 0029086b3f
Some checks failed
Build & Lint / build-lint (push) Failing after 2m10s
Deploy / setup (push) Failing after 1m3s
Init
2024-10-12 14:08:09 +11:00

19 lines
276 B
Bash
Executable File

#!/usr/bin/env bash
shopt -s failglob
set -eu -o pipefail
echo "Begin: setup npm"
npm install npm@10.5.0 -g
export NODE_OPTIONS=--max-old-space-size=6144
npm config set user 0
npm config set unsafe-perm true
npm --version
npm install -g pnpm@9
echo "Finish: setup npm"