9 lines
79 B
Bash
9 lines
79 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -d "dist" ]; then
|
||
|
yarn install
|
||
|
yarn build
|
||
|
fi
|
||
|
|
||
|
yarn start
|