oh-my-bash/completions/npm.completion.sh
2022-01-15 19:00:35 +09:00

10 lines
173 B
Bash

#! bash oh-my-bash.module
# npm (Node Package Manager) completion
# https://docs.npmjs.com/cli/completion
if command -v npm &>/dev/null
then
eval "$(npm completion)"
fi