Add pnpm config

This commit is contained in:
Max Bucknell 2024-04-04 10:05:24 +11:00
parent 12f73d0c43
commit 51ed6ab9a4
No known key found for this signature in database

View file

@ -242,3 +242,11 @@ if [ -f '/opt/max/google-cloud-sdk/path.zsh.inc' ]; then . '/opt/max/google-clou
# The next line enables shell command completion for gcloud. # The next line enables shell command completion for gcloud.
if [ -f '/opt/max/google-cloud-sdk/completion.zsh.inc' ]; then . '/opt/max/google-cloud-sdk/completion.zsh.inc'; fi if [ -f '/opt/max/google-cloud-sdk/completion.zsh.inc' ]; then . '/opt/max/google-cloud-sdk/completion.zsh.inc'; fi
# pnpm
export PNPM_HOME="/Users/maxbucknell/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end