mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-05 18:00:39 +00:00
25 lines
511 B
Makefile
25 lines
511 B
Makefile
set dotenv-load := true
|
|
set unstable := true
|
|
|
|
mod docs ".just/docs.just"
|
|
mod proto ".just/proto.just"
|
|
|
|
# List all available commands
|
|
[private]
|
|
default:
|
|
@just --list
|
|
|
|
bumpver *ARGS:
|
|
uv run --with bumpver bumpver {{ ARGS }}
|
|
|
|
clean:
|
|
rm -rf target/
|
|
|
|
# run pre-commit on all files
|
|
lint:
|
|
@just --fmt
|
|
uv run --with pre-commit-uv pre-commit run --all-files
|
|
|
|
# generate Pydantic models from Rust types
|
|
schema OUTPUT="packages/djls-agent/src/djls_agent/":
|
|
cargo dev pydantic --output {{ OUTPUT }}
|