nibula 1.2.5 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to Nibula are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.6] - 2026-08-01
9
+
10
+ ### Fixed
11
+ - The scaffolder created the routes folder as `src/frontend/_routes` instead of
12
+ `src/frontend/routes`. The CLI writes and looks for page templates in
13
+ `routes`, so on a freshly created project every page ended up outside the
14
+ folder Eleventy and the assistant expect.
15
+
16
+ ### Notes
17
+ - Projects created with 1.2.5 have an empty `src/frontend/_routes` folder that
18
+ can be deleted. Pages created before this fix should be moved to
19
+ `src/frontend/routes`.
20
+
8
21
  ## [1.2.5] - 2026-08-01
9
22
 
10
23
  ### Added
package/bin/create.js CHANGED
@@ -75,7 +75,7 @@ const FRONTEND_EXCLUDE = {
75
75
  };
76
76
 
77
77
  const CREATE_DIRS = [
78
- 'src/frontend/_routes',
78
+ 'src/frontend/routes',
79
79
  ];
80
80
 
81
81
  // Backend files that belong to exactly one backend, matched by basename.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nibula",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "A beginner-friendly static site generator built on Eleventy that stays close to vanilla HTML, CSS and JS — with a page-management CLI, an optional PHP backend, and SEO files generated for you.",
5
5
  "keywords": [
6
6
  "static-site-generator",