Add docs-deps-paru task to Makefile
This commit is contained in:
parent
83ea84b9ab
commit
3ca3a4e9e3
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -6,7 +6,8 @@ TESTPROJECT=/tmp/core_devproject
|
||||||
|
|
||||||
dist: help
|
dist: help
|
||||||
help:
|
help:
|
||||||
@echo "Available tasks: docs-deps (installs the docs builder and addons)"
|
@echo "Available tasks: docs-deps (installs the docs dependencies via pip)"
|
||||||
|
@echo " docs-deps-paru (install the docs dependencies via paru)"
|
||||||
@echo " docs-serve (starts development server)"
|
@echo " docs-serve (starts development server)"
|
||||||
@echo " docs-build (export prod ready documentation as html)"
|
@echo " docs-build (export prod ready documentation as html)"
|
||||||
@echo " docs-clean (removes the built documentation)"
|
@echo " docs-clean (removes the built documentation)"
|
||||||
|
@ -16,6 +17,10 @@ docs-deps:
|
||||||
@echo ":: Installing documentation dependencies"
|
@echo ":: Installing documentation dependencies"
|
||||||
@echo " This may take a few minutes"
|
@echo " This may take a few minutes"
|
||||||
@pip install -r requirements.txt
|
@pip install -r requirements.txt
|
||||||
|
docs-deps-paru:
|
||||||
|
@echo ":: Installing documentation dependencies"
|
||||||
|
@echo " This may take a few minutes"
|
||||||
|
@paru -Sy --needed python-pyyaml-env-tag python-mergedeep python-six python-smmap python-gitdb python-urllib3 python-idna python-dateutil python-pytz python-babel python-requests python-regex python-pygments python-colorama python-watchdog python-packaging python-ghp-import python-click python-jinja python-yaml python-gitpython python-markupsafe pymdown-extensions mkdocs-material-pymdownx-extras mkdocs-git-revision-date-localized-plugin mkdocs-material mkdocs
|
||||||
docs-serve:
|
docs-serve:
|
||||||
@echo ":: Serving documentation, press CTRL+C to exit"
|
@echo ":: Serving documentation, press CTRL+C to exit"
|
||||||
# prevent make from terminating
|
# prevent make from terminating
|
||||||
|
|
Loading…
Reference in a new issue