12 lines
140 B
Bash
12 lines
140 B
Bash
#!/bin/sh
|
|
set -ex
|
|
|
|
# npm run dev
|
|
|
|
# npm run start
|
|
|
|
npx browserslist@latest --update-db
|
|
|
|
npm run watch &
|
|
|
|
while true; do sleep infinity; done |