11 lines
127 B
Bash
Executable file
11 lines
127 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
npm_binaries() {
|
|
if command -v yarn > /dev/null; then
|
|
yarn bin
|
|
else
|
|
npm bin
|
|
fi
|
|
}
|