dotfiles/node/node_utils.fish
2024-02-03 20:03:19 -08:00

15 lines
343 B
Fish

#!/usr/bin/env fish
source "$DOT/script/utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function npm_install -a msg pkg
set -f cmd "npm install --global --silent $pkg"
if ! cmd_exists volta
set cmd "source $DOT/node/path.config.fish; $cmd"
end
execute "$cmd" "$msg"
end