mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-24 15:18:53 +00:00
5fc649cbee
https://github.com/jimporter/mike/releases/tag/v2.0.0 The main immediate advantage of this is that `mike` will stop pushing empty commits. Also, we can consider switching to using symlinks instead of redirects for mapping the "latest" version to "v0.11.0". This would make `https://martinvonz.github.io/jj/latest/` have the same content as `https://martinvonz.github.io/jj/v0.11.0/` (until the next version is out), but the user would see `latest` in the URL. For now, I set an option to keep using redirects. I did a bit of non-exhaustive testing; it seems to work.
27 lines
713 B
TOML
27 lines
713 B
TOML
# The `dev-dependencies` section sets up tools for building `jj`
|
|
# documentation. `poetry` will install these in a virtual environment.
|
|
# The other sections are unused.
|
|
[tool.poetry]
|
|
name = "jj-docs"
|
|
version = "0"
|
|
description = ""
|
|
authors = []
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
# These can be updated with `poetry add`.
|
|
mkdocs = "^1.5.2"
|
|
mkdocs-material = "^9.4"
|
|
# (Py)Markdown extensions
|
|
mdx-truly-sane-lists = "^1.3"
|
|
mdx-breakless-lists = "^1.0.1"
|
|
# Allows setting up redirects when renaming docs files
|
|
mkdocs-redirects = "^1.2.1"
|
|
# Versioning of documentation
|
|
mike = "^2.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|