mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 04:48:00 +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
|