15 lines
293 B
Bash
15 lines
293 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
|
|
|
|
export PNPM_HOME="$HOME/.local/share/pnpm"
|
|
case ":$PATH:" in
|
|
*":$PNPM_HOME:"*) ;;
|
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
|
esac
|
|
|
|
SHELL=/bin/bash pnpm setup
|
|
pnpm add -g nx@latest
|