chore: version packages - #40
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
August 7, 2026 22:08
87bf5a4 to
aea3516
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 7, 2026 23:29
aea3516 to
8a6aff6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@eventuras/lectio-docs@0.4.0
Minor Changes
e8dc6b3: Multilingual documentation sets, opt-in via
locales/defaultLocaleinDocsConfig. A document's language comes from its frontmatter (locale:orlanguage:— the only option when the filename isn't ours, like a package'sREADME.md), else a filename suffix (terms.nb.md, the recommendedconvention), else a path segment (
nb/terms.md). Only configured locales arerecognised, so
notes.draft.mdandapps/v2/README.mdaren't mistaken fortranslations.
The marker is stripped from the slug, so every translation of a document shares
one URL and stays one page in the nav.
getTree(locale),getPages(locale)andgetPage(slug, locale)resolve to the closest version available and report thelocale the page is actually written in, so a host can tell the reader when they
got a fallback;
getLocales()lists what the manifest holds. Untranslated pagesstay in the tree rather than being hidden.
Omit
localesand nothing changes: pages carry nolocale, manifests arebyte-identical to before, and the existing no-argument calls behave exactly as
they always have.
e8dc6b3:
parseFrontmatteris exported from./content— the collector's private reader,now shared instead of duplicated. It is deliberately not a YAML parser: scalar
key: valuelines, values left as written, which is what documentationfrontmatter actually is and what keeps the dependency tree at what the collector
and the search index genuinely need.
What it can't represent — lists, nested maps, block and flow scalars — it now
names in
unsupportedKeysinstead of dropping in silence, andcollect()warnsper file. A reader this small is fine; one that loses a
tags:list withoutsaying so is not.
453347d: Build a manifest without
collect(), and resolve the links documents make toeach other.
pathToPageexports the file-to-page logic the collector uses — the slug a pathgets, and the language it is written in — so a host whose content changes
without a rebuild can assemble a manifest at runtime and still get the tree,
the locale fallback and the search index.
pathToSlug,pathToLocale,normalizeSlugandresolveRelativePathcome with it, all pure anddependency-free.
source.resolveLink(href, fromSource)maps a relative*.mdlink to the pageit means, resolved against the source path of the document containing it rather
than against a bare filename. Two sections can then each hold a
config.mdwithout
[overview](../guides/config.md)becoming ambiguous, and a link fromnb/privacy.mdtoterms.mdlands on the Norwegian version of that page.A
slug:in frontmatter now overrides the path-derived slug, so a document cankeep a short, stable URL while its filename stays descriptive. Translations that
disagree on the slug they declare are warned about while collecting — they would
otherwise quietly stop being one page.
c8153bb: With no
docs.config.ts, the CLI now generates an opinionated starter from therepo's shape: root
docs/first, then app readmes and docs under/apps, then/packagesand/libs. Name variants share a group (apps/orApplications/,libs/orLibraries/), and repos with none of these directories keep thewhole-tree
**/*.mdsweep.Source order is sidebar order, so the generated config is the navigation —
configuring it means editing the file it wrote.
Patch Changes
buildTreeputs the home page first and sinks decision-record sections (adr,adrs,decisions) to the bottom of the level they sit on. ADRs are referencematerial read after the narrative docs, and manifest order — which is glob
order — otherwise scattered them mid-nav.
lectio-docs@0.2.3
Patch Changes
@eventuras/lectio-docs-react@0.1.3
Patch Changes