7 lines
62 B
Bash
7 lines
62 B
Bash
|
#!/bin/sh
|
||
|
set -x
|
||
|
set -e
|
||
|
npm install --production
|
||
|
npm run dev
|
||
|
|