-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustfile
More file actions
49 lines (35 loc) · 813 Bytes
/
Copy pathJustfile
File metadata and controls
49 lines (35 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
set shell := ["zsh", "-cu"]
set positional-arguments := true
install:
bun install --workspaces
fmt:
bunx prettier --write client server
prebuild:
cd client && bunx expo prebuild --platform all
dev:
bunx concurrently -n CLIENT,SERVER -c blue,green "just dev-client" "just dev-server"
dev-client:
cd client && bun run start
dev-server:
cd server && bun run dev
ios *args:
cd client && bun run ios -- "$@"
android *args:
cd client && bun run android -- "$@"
lint:
cd client && bun run lint
cd server && bun run lint
typecheck:
cd client && bun run typecheck
cd server && bun run typecheck
test:
cd client && bun run test
cd server && bun run test
test-client:
cd client && bun run test
test-server:
cd server && bun run test
ci:
just lint
just typecheck
just test