mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2024-10-01 07:35:39 -04:00
a0c7875391
- create account - login - change password - haveno hooks - electron-store hooks - haveno-ts --- Authored-by: schowdhuri Reviewed-by: localredhead
9 lines
253 B
Bash
Executable File
9 lines
253 B
Bash
Executable File
#!/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
|