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 +4 -0
- package/_tools/res/templates/template.njk +3 -2
- package/bin/create.js +1 -2
- package/package.json +3 -2
- package/src/404.njk +1 -1
- package/src/index.njk +1 -1
package/.gitignore
ADDED
|
@@ -4,5 +4,6 @@ permalink: ""
|
|
|
4
4
|
layout: includes.njk
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
<!--
|
|
8
|
-
|
|
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.
|
|
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.
|
|
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
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
|
-
<!--
|
|
9
|
+
<!-- You should create a new component.njk into src/components and include that in components/layouts/includes.njk -->
|