5 lines
102 B
Bash
Executable file
5 lines
102 B
Bash
Executable file
#!/usr/bin/env -S bash -eux
|
|
|
|
npm_binaries () {
|
|
command -v yarn > /dev/null && yarn bin || npm bin
|
|
}
|