Skip to content

Commit 588dc38

Browse files
committed
Add a new alias "makedocs"
* The "makedocs" alias calls "uv run --frozen make -C docs html" to update the documentation * Each alias contains now a comment about the purpose
1 parent ae87cfa commit 588dc38

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

devel/activate-aliases.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#!/bin/bash
22

3+
# For testing:
34
alias upytest="uv run --frozen pytest"
5+
6+
# For executing the project's script:
47
alias docbuild="uv run --frozen docbuild"
8+
9+
# For managing changelog and news files:
510
alias towncrier="uv run --frozen towncrier"
11+
12+
# For creating docs:
13+
alias makedocs="uv run --frozen make -C docs html"

0 commit comments

Comments
 (0)