create-berna-stencil 1.0.32 → 1.0.34

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/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ node_modules/
2
+ src/api/core/vendor/
3
+ out/
4
+ src/api/config.php
@@ -4,5 +4,6 @@ permalink: ""
4
4
  layout: includes.njk
5
5
  ---
6
6
 
7
- <!-- Add content via components in src/components/, not directly here.
8
- Register them in src/layouts/includes.njk. -->
7
+ <!-- !IMPORTANT -->
8
+ <!-- DO NOT ADD ANYTHING HERE -->
9
+ <!-- You should create a new component.njk into src/components and include that in components/layouts/includes.njk -->
package/bin/create.js CHANGED
@@ -15,7 +15,7 @@ const COPY_TARGETS = [
15
15
 
16
16
  const PROJECT_PACKAGE = {
17
17
  name: path.basename(targetDir),
18
- version: '1.0.32',
18
+ version: '1.0.34',
19
19
  private: true,
20
20
  scripts: {
21
21
  "build:css": "sass src/scss:out/css --no-source-map --style=compressed --quiet",
@@ -106,4 +106,3 @@ if (process.argv[2]) {
106
106
  }
107
107
  log('npm install');
108
108
  log('npm run serve\n');
109
- log("\nDon't forget to check the documentation at https://bernastencil.com");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-berna-stencil",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
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
  "eleventy",
@@ -34,7 +34,8 @@
34
34
  "src/",
35
35
  "_tools/",
36
36
  ".eleventy.js",
37
- ".eleventyignore"
37
+ ".eleventyignore",
38
+ ".gitignore"
38
39
  ],
39
40
  "engines": {
40
41
  "node": ">=18.0.0"
package/src/404.njk CHANGED
@@ -13,4 +13,4 @@ layout: base.njk
13
13
  </div>
14
14
 
15
15
  {# You can also add the includes you need here below
16
- {% include "_exampleComponent.njk" %} #}
16
+ {% include "component.njk" %} #}
package/src/index.njk CHANGED
@@ -6,4 +6,4 @@ layout: includes.njk
6
6
 
7
7
  <!-- !IMPORTANT -->
8
8
  <!-- DO NOT ADD ANYTHING HERE -->
9
- <!-- YOU SHOULD CREATE A NEW COMPONENT.NJK INTO SRC/COMPONENTS AND INCLUDE THAT IN LAYOUTS/INCLUDES.NJK-->
9
+ <!-- You should create a new component.njk into src/components and include that in components/layouts/includes.njk -->