diff options
Diffstat (limited to 'bin/dev-server')
-rwxr-xr-x | bin/dev-server | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bin/dev-server b/bin/dev-server index 2d1bf99..c98fdc5 100755 --- a/bin/dev-server +++ b/bin/dev-server @@ -3,7 +3,7 @@ set -euo pipefail cd $(dirname "$0")/.. if [ "$#" == 1 ]; then - BOOK_DIR="$1" + BOOK_LIBRARY="$1" else echo "usage: $0 path-to-book-directory" exit 1 @@ -11,17 +11,18 @@ fi # Watch books -BUILD_BOOKS_CMD="./bin/get-books $BOOK_DIR > public/books.js && echo public/books.js updated." +BUILD_BOOKS_CMD="echo \"const bookLibrary=\" > src/view/public/books.js && python src/main.py library >> src/view/public/books.js && echo src/view/public/books.js updated." watchexec \ - --watch "$BOOK_DIR" \ + --watch "$BOOK_LIBRARY" \ -- "$BUILD_BOOKS_CMD" & # Watch TypeScript +cd src/view CHECK="echo -e 'Checking TypeScript…\n' && tsc --checkJs" -BUILD="esbuild --bundle src/main.ts --target=es2017 --outdir=public" +BUILD="esbuild --bundle main.ts --target=es2017 --outdir=public" SHOW="echo -e '\nOpen $PWD/public/index.html'" watchexec \ --clear \ - --watch src \ + --watch client \ -- "$CHECK && $BUILD && $SHOW" |