mirror of
https://github.com/calzoneman/sync.git
synced 2024-09-13 04:32:09 +00:00
15 lines
248 B
Bash
Executable File
15 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"
|