8 lines
110 B
Bash
8 lines
110 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
APP_DIR=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
|
||
|
|
cd "$APP_DIR"
|
||
|
|
npm ci
|
||
|
|
npm run build
|