-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
47 lines (35 loc) · 1.05 KB
/
Copy pathMakefile
File metadata and controls
47 lines (35 loc) · 1.05 KB
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
46
47
.PHONY: build test lint docs docs-api docs-html docs-linkcheck release package upload clean help
help:
@echo "ts-chef development commands:"
@echo " make build - Build the project"
@echo " make test - Run all tests"
@echo " make lint - Run linting and formatting"
@echo " make docs - Regenerate the Sphinx operation catalog"
@echo " make docs-api - Generate TypeDoc API documentation"
@echo " make docs-html - Build the Sphinx HTML site"
@echo " make docs-linkcheck - Validate documentation links"
@echo " make release - Build, test, and package (.vsix)"
@echo " make clean - Remove build artifacts"
build:
npm run build
test:
npm run test
lint:
npm run lint:fix
npm run format
docs:
npm run docs
docs-api:
npm run docs:api
docs-html:
python -m sphinx -W --keep-going -b html docs docs/_build/html
docs-linkcheck:
python -m sphinx -W --keep-going -b linkcheck docs docs/_build/linkcheck
package:
npm run package
release:
npm run release
upload:
npm run upload
clean:
rm -rf dist/ out/ coverage/ docs/api/ *.vsix