-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathjustfile
More file actions
55 lines (43 loc) · 845 Bytes
/
justfile
File metadata and controls
55 lines (43 loc) · 845 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
46
47
48
49
50
51
52
53
54
55
default:
@just --list
[group('docs')]
build-docs:
mkdocs build
[group('js')]
build-js: clean-js install-js
uv run ./utils/generate_example_iam_data.py
npm run build
[group('package')]
build-package: clean
uv build
[group('package')]
clean:
rm -rf dist/
rm -rf *.egg-info
[group('js')]
clean-js:
rm -rf node_modules/
npm cache clear --force
[group('js')]
generate-report:
uv run ./utils/generate_example_iam_data.py
uv run ./utils/generate_example_report.py
[group('js')]
install-js:
npm ci
[group('docs')]
serve-docs:
mkdocs serve --dev-addr "127.0.0.1:8001"
[group('js')]
serve-js: install-js
npm run serve
[group('js')]
test-js: install-js
npm test
[group('test')]
type-check:
ty check
[group('test')]
unit-tests:
coverage run -m pytest -v
coverage report -m