-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathbb.edn
More file actions
14 lines (12 loc) · 620 Bytes
/
bb.edn
File metadata and controls
14 lines (12 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{:tasks
{dev:squint (shell "npx squint watch --repl true")
dev:vite (shell "npx vite --config=vite.config.js public")
-dev {:depends [dev:squint dev:vite]}
dev (run '-dev {:parallel true})
test:watch:squint (shell "npx squint watch --paths src test --output-dir public/test")
test:watch:vite (shell "npx vitest --config=vite.config.js")
-test:watch {:depends [test:watch:squint test:watch:vite]}
test:watch (run '-test:watch {:parallel true})
build:squint (shell "npx squint compile")
build:vite (shell "npx vite --config vite.config.js build public")
build {:depends [build:squint build:vite]}}}