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 +3 -11
- package/bin/create.js +1 -1
- package/docs/Creating pages.md +0 -2
- package/package.json +1 -1
- package/src/frontend/components/welcome.njk +1 -1
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
|
-

|
|
16
16
|

|
|
17
17
|

|
|
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
|
-
* [ ]
|
|
55
|
-
* [ ]
|
|
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.
|
|
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",
|
package/docs/Creating pages.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-berna-stencil",
|
|
3
|
-
"version": "2.0.
|
|
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>{% elif title == "myPage" %}
|
|
327
327
|
{% include "_myPage.njk" %}</code></pre>
|
|
328
|
-
<p>See <a href="components
|
|
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>
|