create-berna-stencil 1.0.37 → 1.0.38

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/bin/create.js CHANGED
@@ -47,7 +47,7 @@ const PROJECT_PACKAGE = {
47
47
  },
48
48
  };
49
49
 
50
- const GITIGNORE_CONTENT = `node_modules/
50
+ const GITIGNORE_CONTENT = `
51
51
  node_modules/
52
52
  src/api/core/vendor/
53
53
  out/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-berna-stencil",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
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",
@@ -2,7 +2,6 @@
2
2
  // JAVASCRIPT MODULES IMPORTS
3
3
  //==========================
4
4
 
5
-
6
5
  // Call anywhere
7
6
  import { showNotification } from '../modules/notification.js';
8
7
 
@@ -11,10 +10,10 @@ import { showNotification } from '../modules/notification.js';
11
10
  // import { initNormalizePhoneNumber } from '../modules/forms/normalizePhoneNumber.js';
12
11
 
13
12
  //==========================
14
- // "404" PAGE CUSTOM JAVASCRIPT
13
+ // PAGE CUSTOM JAVASCRIPT
15
14
  //==========================
16
15
 
17
16
  document.addEventListener("DOMContentLoaded", () => {
18
17
  });
19
18
 
20
- showNotification("404 notification", "success", 3000);
19
+ showNotification("Example notification", "success", 3000);