diff --git a/Makefile b/Makefile index 806080d..79fef03 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,8 @@ TESTPROJECT=/tmp/core_devproject dist: 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-build (export prod ready documentation as html)" @echo " docs-clean (removes the built documentation)" @@ -16,6 +17,10 @@ docs-deps: @echo ":: Installing documentation dependencies" @echo " This may take a few minutes" @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: @echo ":: Serving documentation, press CTRL+C to exit" # prevent make from terminating