-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 588 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 588 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
build:
python scripts/release_check.py streamlit_webrtc/component.py
cd streamlit_webrtc/frontend && pnpm run build
uv build
format/backend:
uv run ruff format .
uv run ruff check . --fix
format/frontend:
cd streamlit_webrtc/frontend && pnpm format
format:
$(MAKE) format/backend
$(MAKE) format/frontend
release/patch:
$(MAKE) version=patch release
release/minor:
$(MAKE) version=minor release
release/major:
$(MAKE) version=major release
release:
uv run bump-my-version bump $(version) --tag --commit --commit-args='--allow-empty' --verbose
git push
git push --tags