mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2024-12-26 16:09:47 -05:00
9 lines
253 B
Bash
9 lines
253 B
Bash
|
#!/bin/sh
|
||
|
./node_modules/.bin/tsc --watch --noEmit --project packages/main &
|
||
|
P1=$!
|
||
|
./node_modules/.bin/tsc --watch --noEmit --project packages/preload &
|
||
|
P2=$!
|
||
|
./node_modules/.bin/tsc --watch --noEmit --project packages/renderer &
|
||
|
P3=$!
|
||
|
wait $P1 $P2 $P3
|