summaryrefslogtreecommitdiff
path: root/justfile
blob: 3f8d64f311a048137707908cd289e1875a76c2a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
bun_run command:
  bun run {{command}}

register:
  just bun_run register

publish:
  just bun_run publish

lint:
  just bun_run lint

check:
  just bun_run type-check

checkl:
  just lint && just check
  
fix:
  just bun_run fix