21 lines
222 B
Bash
Executable File
21 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Build typings library
|
|
cd typings
|
|
npm install
|
|
npm run sync-ce
|
|
cd ..
|
|
|
|
# Build backend
|
|
cd backend
|
|
npm install
|
|
npm run build:prod
|
|
cd ..
|
|
|
|
# Build frontend
|
|
cd frontend
|
|
npm install
|
|
# npm run lib:build
|
|
cd .. |