forked from NVIDIA/NemoClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (30 loc) · 692 Bytes
/
Copy pathMakefile
File metadata and controls
45 lines (30 loc) · 692 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
40
41
42
43
44
45
.PHONY: check lint format format-biome lint-ts format-ts check-installer-hash docs docs-deps docs-strict docs-live docs-preview-watch docs-clean
check:
npm run check
lint:
npm run check
# Targeted subproject checks (not part of `make check` — use for focused runs).
lint-ts:
npm run lint:ts
format:
npm run format
format-biome:
npm run format
format-ts:
npm run format:ts
# --- Integrity checks ---
check-installer-hash:
npm run check:installer-hash
# --- Documentation ---
docs:
npm run docs
docs-deps:
npm run docs:deps
docs-strict:
npm run docs:strict
docs-live:
npm run docs:live
docs-preview-watch:
npm run docs:preview:watch
docs-clean:
npm run docs:clean