dotfiles/node/node_utils.fish

16 lines
343 B
Fish
Raw Normal View History

2024-01-29 17:26:52 -08:00
#!/usr/bin/env fish
source "$DOT/script/utils.fish"
2024-02-03 12:05:02 -08:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2024-01-29 17:26:52 -08:00
function npm_install -a msg pkg
2024-02-03 20:03:19 -08:00
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"
2024-01-29 17:26:52 -08:00
end