mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 16:36:22 +02:00
12 lines
No EOL
193 B
Bash
12 lines
No EOL
193 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# build rowboatx next.js app
|
|
(cd apps/rowboatx && \
|
|
npm install && \
|
|
npm run build)
|
|
|
|
# build rowboat server
|
|
(cd apps/cli && \
|
|
npm install && \
|
|
npm run build) |