-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 748 Bytes
/
Copy pathMakefile
File metadata and controls
31 lines (24 loc) · 748 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
.PHONY: build test lint preflight preflight-quick clean help
# Default target
help:
@echo "remnic — available make targets:"
@echo ""
@echo " make build Compile TypeScript to dist/"
@echo " make test Run full test suite"
@echo " make lint TypeScript type check (root + workspace packages)"
@echo " make preflight Full pre-PR gate (types + contract + tests + build)"
@echo " make preflight-quick Fast pre-PR gate (types + contract + key tests)"
@echo " make clean Remove dist/ and build artifacts"
@echo ""
build:
pnpm build
test:
pnpm test
lint:
pnpm check-types
preflight:
pnpm run preflight
preflight-quick:
pnpm run preflight:quick
clean:
node scripts/clean-dist.mjs