mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-13 19:22:05 +00:00
14 lines
248 B
Bash
Executable file
14 lines
248 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if ! command -v npm >/dev/null; then
|
|
echo "Could not find npm in \$PATH"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Building from src/ to lib/"
|
|
npm run build-server
|
|
echo "Building from player/ to www/js/player.js"
|
|
npm run build-player
|
|
echo "Done"
|