rowboat/build-electron.sh
Ramnique Singh 2491bacea1 wip-electron
2026-01-16 12:05:33 +05:30

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)