create-berna-stencil 1.0.56 → 1.0.58

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.
Files changed (2) hide show
  1. package/.eleventy.js +1 -1
  2. package/package.json +58 -58
package/.eleventy.js CHANGED
@@ -4,7 +4,7 @@ const Image = require("@11ty/eleventy-img");
4
4
  const fs = require("fs");
5
5
  const path = require("path");
6
6
 
7
- const OUTPUT_DIR = "c:/laragon/www/Berna-Stencil-out";
7
+ const OUTPUT_DIR = "out";
8
8
 
9
9
  module.exports = function (eleventyConfig) {
10
10
 
package/package.json CHANGED
@@ -1,59 +1,59 @@
1
- {
2
- "name": "create-berna-stencil",
3
- "version": "1.0.56",
4
- "description": "Eleventy boilerplate with per-page SCSS/JS pipeline, esbuild bundling, multi-framework CSS support and a built-in page management CLI",
5
- "keywords": [],
6
- "author": "Michele Garofalo",
7
- "license": "MIT",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/rhaastrake/berna-stencil"
11
- },
12
- "homepage": "https://github.com/rhaastrake/berna-stencil#readme",
13
- "bugs": {
14
- "url": "https://github.com/rhaastrake/berna-stencil/issues"
15
- },
16
- "bin": {
17
- "create-berna-stencil": "bin/create.js"
18
- },
19
- "files": [
20
- "bin/",
21
- "docs/",
22
- "src/",
23
- "_tools/",
24
- ".eleventy.js",
25
- ".eleventyignore",
26
- ".gitignore"
27
- ],
28
- "engines": {
29
- "node": ">=18.0.0"
30
- },
31
- "dependencies": {
32
- "@11ty/eleventy": "^3.1.2",
33
- "@11ty/eleventy-img": "^6.0.4",
34
- "bootstrap": "^5.3.8",
35
- "bootstrap-icons": "^1.13.1",
36
- "bulma": "^1.0.4",
37
- "foundation-sites": "^6.9.0",
38
- "glob": "^13.0.6",
39
- "uikit": "^3.25.13"
40
- },
41
- "devDependencies": {
42
- "concurrently": "^9.2.1",
43
- "esbuild": "^0.27.3",
44
- "sass": "^1.77.0"
45
- },
46
- "scripts": {
47
- "build:css": "sass src/frontend/scss:c:/laragon/www/Berna-Stencil-out/css --no-source-map --style=compressed --quiet",
48
- "build:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=c:/laragon/www/Berna-Stencil-out/js/pages --minify",
49
- "build:11ty": "eleventy",
50
- "build": "npm run clean && npm run build:css && npm run build:js && npm run build:11ty",
51
- "serve:css": "sass --watch src/frontend/scss:c:/laragon/www/Berna-Stencil-out/css --no-source-map --quiet",
52
- "serve:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=c:/laragon/www/Berna-Stencil-out/js/pages --watch",
53
- "serve:11ty": "eleventy --serve --quiet",
54
- "clean": "node _tools/cleanOutput.js",
55
- "serve": "npm run clean && concurrently \"npm run serve:11ty\" \"npm run serve:css\" \"npm run serve:js\"",
56
- "assistant": "node _tools/assistant.js",
57
- "postinstall": "cd src/backend/_core && composer install --quiet"
58
- }
1
+ {
2
+ "name": "create-berna-stencil",
3
+ "version": "1.0.58",
4
+ "description": "Eleventy boilerplate with per-page SCSS/JS pipeline, esbuild bundling, multi-framework CSS support and a built-in page management CLI",
5
+ "keywords": [],
6
+ "author": "Michele Garofalo",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/rhaastrake/berna-stencil"
11
+ },
12
+ "homepage": "https://github.com/rhaastrake/berna-stencil#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/rhaastrake/berna-stencil/issues"
15
+ },
16
+ "bin": {
17
+ "create-berna-stencil": "bin/create.js"
18
+ },
19
+ "files": [
20
+ "bin/",
21
+ "docs/",
22
+ "src/",
23
+ "_tools/",
24
+ ".eleventy.js",
25
+ ".eleventyignore",
26
+ ".gitignore"
27
+ ],
28
+ "engines": {
29
+ "node": ">=18.0.0"
30
+ },
31
+ "dependencies": {
32
+ "@11ty/eleventy": "^3.1.2",
33
+ "@11ty/eleventy-img": "^6.0.4",
34
+ "bootstrap": "^5.3.8",
35
+ "bootstrap-icons": "^1.13.1",
36
+ "bulma": "^1.0.4",
37
+ "foundation-sites": "^6.9.0",
38
+ "glob": "^13.0.6",
39
+ "uikit": "^3.25.13"
40
+ },
41
+ "devDependencies": {
42
+ "concurrently": "^9.2.1",
43
+ "esbuild": "^0.27.3",
44
+ "sass": "^1.77.0"
45
+ },
46
+ "scripts": {
47
+ "build:css": "sass src/frontend/scss:out/css --no-source-map --style=compressed --quiet",
48
+ "build:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=out/js/pages --minify",
49
+ "build:11ty": "eleventy",
50
+ "build": "npm run clean && npm run build:css && npm run build:js && npm run build:11ty",
51
+ "serve:css": "sass --watch src/frontend/scss:out/css --no-source-map --quiet",
52
+ "serve:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=out/js/pages --watch",
53
+ "serve:11ty": "eleventy --serve --quiet",
54
+ "clean": "node _tools/cleanOutput.js",
55
+ "serve": "npm run clean && concurrently \"npm run serve:11ty\" \"npm run serve:css\" \"npm run serve:js\"",
56
+ "assistant": "node _tools/assistant.js",
57
+ "postinstall": "cd src/backend/_core && composer install --quiet"
58
+ }
59
59
  }