-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
51 lines (43 loc) · 1.23 KB
/
Taskfile.yml
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
50
51
version: '3'
tasks:
# Task to install dependencies for all packages
install:
desc: "Install dependencies for all packages"
cmds:
- bun install
silent: true
# Task to run the development server for the web app
dev:web:
desc: "Run the development server for the web app"
cmds:
- cd apps/web && bun run dev
# Task to build the web app
build:web:
desc: "Build the web app"
cmds:
- cd apps/web && bun run build
# Task to start the production server for the web app
start:web:
desc: "Start the production server for the web app"
cmds:
- cd apps/web && bun run start
# Task to generate types and schemas for the Supabase service
gen:supabase:
desc: "Generate types and schemas for the Supabase service"
cmds:
- cd services/supabase && bun run supa:gen
# Task to clean node_modules in all packages
clean:
desc: "Clean node_modules in all packages"
cmds:
- bun run clean
# Task to format and lint the codebase
lint:
desc: "Format and lint the codebase"
cmds:
- bun run format-and-lint
# Task to fix formatting and linting issues
lint:fix:
desc: "Fix formatting and linting issues"
cmds:
- bun run format-and-lint:fix