summaryrefslogtreecommitdiff
path: root/justfile
blob: 6901450dde244b5eb7c025b6bce930f827cb115e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
alias b := build
alias d := dev
alias f := fmt
alias p := preview
alias u := update
alias uf := update-flake

build:
    pnpm run build

dev:
    pnpm run dev

fmt:
    prettier --editorconfig -w .

preview: build
    pnpm run preview

update:
    pnpm update

update-flake:
    nix flake update