12 lines
172 B
Bash
Executable File
12 lines
172 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if command -v yarn >/dev/null 2>&1; then
|
|
echo "yarn is available"
|
|
else
|
|
echo "yarn is not installed" >&2
|
|
exit 1
|
|
fi
|
|
|
|
yarn install
|
|
|
|
yarn build |