-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (26 loc) · 656 Bytes
/
Makefile
File metadata and controls
39 lines (26 loc) · 656 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
.PHONY: build test test-models lint fix format clean intercept intercept-all intercept-update validate-oauth validate-oauth-dry
build:
pnpm run build
test:
pnpm test
test-models:
pnpm run test:models
lint:
pnpm run lint
fix:
pnpm run lint:fix
format:
pnpm run format
clean:
rm -rf dist
intercept:
pnpm run intercept
intercept-all:
pnpm run intercept:all
intercept-update:
pnpm run intercept:update
validate-oauth: build ## Run live OAuth refresh (rotates token, writes back)
pnpm run validate:oauth
validate-oauth-dry: build ## Dry-run OAuth refresh (no network request)
pnpm run validate:oauth -- --dry-run
all: lint build test