Skip to content

Instantly share code, notes, and snippets.

@esamattis
Created January 27, 2022 18:56
Show Gist options
  • Save esamattis/5f92d856a28a54a2d7587dc89358adea to your computer and use it in GitHub Desktop.
Save esamattis/5f92d856a28a54a2d7587dc89358adea to your computer and use it in GitHub Desktop.
Put it to `.zshrc`
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