From 33e39466ca562e44b8cfb6b4ed320f72d0cf78ab Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Fri, 21 Jun 2024 12:34:39 +0300 Subject: [PATCH] {bash,zsh}rc: alias pn to pnpm as per their documentation suggestion --- rc/bashrc | 3 +++ rc/zshrc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/rc/bashrc b/rc/bashrc index ff641e9a..84e838d6 100755 --- a/rc/bashrc +++ b/rc/bashrc @@ -592,6 +592,9 @@ else echo "WARNING! corepack is not installed." fi +# https://pnpm.io/installation#using-a-shorter-alias +alias pn=pnpm + # github-pages etc. if hash bundle 2> /dev/null; then alias jekyll="bundle exec jekyll" diff --git a/rc/zshrc b/rc/zshrc index 4010df6f..0a3e4892 100755 --- a/rc/zshrc +++ b/rc/zshrc @@ -582,6 +582,9 @@ else echo "WARNING! corepack is not installed." fi + # https://pnpm.io/installation#using-a-shorter-alias + alias pn=pnpm + # github-pages etc. if hash bundle 2>/dev/null; then alias jekyll="bundle exec jekyll"