mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2025-02-18 13:44:12 -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
|