10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# install yarn
|
|
sudo npm install yarn -g
|
|
|
|
# make sure it's in path
|
|
sudo ln -s "$(npm bin --global)"/yarn /usr/bin/yarn
|
|
|
|
# build it
|
|
yarn build |