create-berna-stencil 1.0.11 → 1.0.12
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/.eleventy.js +1 -1
- package/bin/create.js +1 -1
- package/package.json +5 -5
package/.eleventy.js
CHANGED
package/bin/create.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-berna-stencil",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
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",
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
"sass": "^1.77.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
|
-
"build:css": "sass src/scss:
|
|
62
|
-
"build:js": "esbuild \"src/js/pages/*.js\" --bundle --outdir=
|
|
61
|
+
"build:css": "sass src/scss:out/css --no-source-map --style=compressed --quiet",
|
|
62
|
+
"build:js": "esbuild \"src/js/pages/*.js\" --bundle --outdir=out/js/pages --minify",
|
|
63
63
|
"build:11ty": "eleventy",
|
|
64
64
|
"build": "npm run build:css && npm run build:js && npm run build:11ty",
|
|
65
|
-
"serve:css": "sass --watch src/scss:
|
|
66
|
-
"serve:js": "esbuild \"src/js/pages/*.js\" --bundle --outdir=
|
|
65
|
+
"serve:css": "sass --watch src/scss:out/css --no-source-map --quiet",
|
|
66
|
+
"serve:js": "esbuild \"src/js/pages/*.js\" --bundle --outdir=out/js/pages --watch",
|
|
67
67
|
"serve:11ty": "eleventy --serve --quiet",
|
|
68
68
|
"clean": "node _tools/cleanOutput.js",
|
|
69
69
|
"serve": "npm run clean && concurrently \"npm run serve:11ty\" \"npm run serve:css\" \"npm run serve:js\"",
|