8 lines
107 B
Bash
8 lines
107 B
Bash
|
#!/bin/bash
|
||
|
script_full_path=$(dirname "$0")
|
||
|
cd $script_full_path
|
||
|
|
||
|
npm install
|
||
|
|
||
|
npm run build
|
||
|
serve -s dist
|