create-berna-stencil 2.0.6 → 2.0.7

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/README.md CHANGED
@@ -12,7 +12,7 @@ Building a website from scratch involves a lot of moving parts: templating engin
12
12
  - 📁 **Scalable structure** — a clean, opinionated project layout that grows with your needs
13
13
  - 🌍 **Open source** — free to use, free to modify, free to share
14
14
 
15
- ![Version](https://img.shields.io/badge/version-2.0.3-blue)
15
+ ![Version](https://img.shields.io/badge/version-2.0.7-blue)
16
16
  ![License](https://img.shields.io/badge/license-Apache--2.0-blue)
17
17
  ![Eleventy](https://img.shields.io/badge/11ty-v3.1.2-black)
18
18
 
@@ -42,15 +42,7 @@ Building a website from scratch involves a lot of moving parts: templating engin
42
42
  npm run serve
43
43
  ```
44
44
 
45
- ## Changelog
46
-
47
- ### [2.0.3] - 2025-05-28
48
- * Initial release
49
- * Eleventy v3.1.2 support
50
- * Base project structure and scaffolding CLI
51
-
52
45
  ## Roadmap
53
46
  * [ ] Add support for multiple themes
54
- * [ ] Improve CLI with interactive prompts
55
- * [ ] Add TypeScript support
56
- * [ ] Extend documentation with advanced usage examples
47
+ * [ ] Extend documentation with advanced usage examples
48
+ * [ ] Assistant CLI improvement for safer inputs
package/bin/create.js CHANGED
@@ -16,7 +16,7 @@ const COPY_TARGETS = [
16
16
 
17
17
  const PROJECT_PACKAGE = {
18
18
  name: path.basename(targetDir),
19
- version: '2.0.6',
19
+ version: '2.0.7',
20
20
  private: true,
21
21
  scripts: {
22
22
  "build:css": "sass src/frontend/scss:out/css --no-source-map --style=compressed --quiet --load-path=node_modules",
@@ -1,5 +1,3 @@
1
- # To be finished...
2
-
3
1
  # Creating Pages
4
2
 
5
3
  The recommended way is via the [Assistant CLI](assistant-cli.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-berna-stencil",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Eleventy boilerplate with per-page SCSS/JS pipeline, esbuild bundling, multi-framework CSS support and a built-in page management CLI",
5
5
  "keywords": [],
6
6
  "author": "Michele Garofalo",
@@ -325,7 +325,7 @@ export function yourFunction() {
325
325
  </ol>
326
326
  <pre><code>&#123;% elif title == "myPage" %&#125;
327
327
  &#123;% include "_myPage.njk" %&#125;</code></pre>
328
- <p>See <a href="components.html">components.md</a> for details.</p>
328
+ <p>See <a href="#" class="nav-to-components">Components</a> for details.</p>
329
329
  <h3>URL and title</h3>
330
330
  <p>The URL is the kebab-case name (<code>/my-page/</code>). The <code>title</code> in the front matter is camelCase (<code>myPage</code>) and is used internally to load the correct CSS and JS files — <strong>do not change it</strong>.</p>
331
331
  <h3>SEO</h3>