forked from NVIDIA/NemoClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (22 loc) · 707 Bytes
/
Makefile
File metadata and controls
34 lines (22 loc) · 707 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
.PHONY: check lint format lint-ts lint-py format-ts format-py docs docs-strict docs-live docs-clean
check: lint-ts lint-py
@echo "All checks passed."
lint: lint-ts lint-py
lint-ts:
cd nemoclaw && npm run check
lint-py:
cd nemoclaw-blueprint && $(MAKE) check
format: format-ts format-py
format-ts:
cd nemoclaw && npm run lint:fix && npm run format
format-py:
cd nemoclaw-blueprint && $(MAKE) format
# --- Documentation ---
docs:
uv run --group docs sphinx-build -b html docs docs/_build/html
docs-strict:
uv run --group docs sphinx-build -W -b html docs docs/_build/html
docs-live:
uv run --group docs sphinx-autobuild docs docs/_build/html --open-browser
docs-clean:
rm -rf docs/_build