p() in fish
#fish
https://twitter.com/chantastic/status/1700234017554235460?t=fM6UPr1OXg5rkNbCfJf0sw&s=19
のfish版
code:config.fish
function p
if test -f bun.lockb;
command bun $argv
else if test pnpm-lock.yaml;
command pnpm $argv
else if test -f yarn.lock;
command yarn $argv
else
command npm $argv
end
end
https://chan.dev/p/