mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 13:06:09 +03:00
17 lines
160 B
Bash
Executable File
17 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
cd pkg/npm/api
|
|
npm install &
|
|
|
|
cd ../../interface
|
|
npm install
|
|
npm run build:prod &
|
|
|
|
cd ./dbug
|
|
npm install
|
|
gulp bundle-prod
|
|
|
|
set +x
|