Files
2021-12-29 21:35:16 +01:00

11 lines
188 B
Bash
Executable File

#!/bin/bash
set -e
# Cleanup: package-lock and "npm ci" is not working with local dependencies
rm dist package-lock.json -rf
npm install
npm run build
node dist/bundle.js
echo "Success"