Release notes
Baseline ships on a rolling release cadence (0.1.0-next.X). Things shift, break, and get renamed between releases. Pin a version when you build something serious on top.
Install from npm:
npm install @apleasantview/eleventy-plugin-baseline --save-exact
v0.1.0-next.44
A housekeeping release: the supported Node range and the dependency versions Baseline declares.
Changed
-
Node 22 is the floor now.
enginesmoved from>=20to>=22, because Node 20 reached end-of-life in April 2026. If you are on Node 20 or 21, move to 22 or 24 (both current LTS). Nothing in the plugin needs syntax newer than Node 22 already has; this is about not advertising a dead line. -
Internal dependencies advanced to match what Baseline is built on.
Most notably
postcss-preset-env(10 to 11) andmarkdown-it-attrs(4 to 5). The versions the plugin declares now match the ones its own docs site has been building on, so what ships is what gets tested. If you pin Baseline's transitive dependencies yourself, note the two majors; otherwise there is nothing to do.
v0.1.0-next.43
A single fix: wikilinks on single-language sites.
Fixed
- Wikilinks (
[[slug]]) now resolve on single-language sites. Slug registration was gated on a multilang-only flag, so a site with nolanguagesconfigured registered nothing and every wikilink rendered as literal text. Nothing to change on your end; they just work now.