Created
January 27, 2022 18:56
-
-
Save esamattis/5f92d856a28a54a2d7587dc89358adea to your computer and use it in GitHub Desktop.
Put it to `.zshrc`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ni() { | |
# Add packages | |
if [ "${1:-}" != "" ]; then | |
if [ -f pnpm-lock.yaml ] || [ -f ../../pnpm-lock.yaml ]; then | |
pnpm install $@ | |
else | |
npm install $@ | |
fi | |
return | |
fi | |
# Prefer installing using the lock file to avoid faker.js like issue. | |
# Just call the original command manually when need to update the lock | |
if [ -f pnpm-lock.yaml ] || [ -f ../../pnpm-lock.yaml ]; then | |
pnpm install --frozen-lockfile | |
elif [ -f package-lock.json ] ; then | |
npm ci | |
else | |
npm install | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment