create-berna-stencil 1.0.1 → 1.0.5
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 +4 -4
- package/package.json +4 -4
- /package/{tools → _tools}/assistant.js +0 -0
- /package/{tools → _tools}/cleanOutput.js +0 -0
- /package/{tools → _tools}/modules/updateData.js +0 -0
- /package/{tools → _tools}/modules/updateIncludes.js +0 -0
- /package/{tools → _tools}/modules/updateOutputPath.js +0 -0
- /package/{tools → _tools}/modules/updatePage.js +0 -0
- /package/{tools → _tools}/res/templates.json +0 -0
package/bin/create.js
CHANGED
|
@@ -8,7 +8,7 @@ const templateDir = path.join(__dirname, '..');
|
|
|
8
8
|
|
|
9
9
|
const COPY_TARGETS = [
|
|
10
10
|
'src',
|
|
11
|
-
'
|
|
11
|
+
'_tools',
|
|
12
12
|
'.eleventy.js',
|
|
13
13
|
'.eleventyignore',
|
|
14
14
|
'.gitignore',
|
|
@@ -17,7 +17,7 @@ const COPY_TARGETS = [
|
|
|
17
17
|
|
|
18
18
|
const PROJECT_PACKAGE = {
|
|
19
19
|
name: path.basename(targetDir),
|
|
20
|
-
version: '1.0.
|
|
20
|
+
version: '1.0.5',
|
|
21
21
|
private: true,
|
|
22
22
|
scripts: {
|
|
23
23
|
'build:css': 'sass src/scss:out/css --no-source-map --style=compressed --quiet',
|
|
@@ -27,9 +27,9 @@ const PROJECT_PACKAGE = {
|
|
|
27
27
|
'serve:css': 'sass --watch src/scss:out/css --no-source-map --quiet',
|
|
28
28
|
'serve:js': 'esbuild "src/js/pages/*.js" --bundle --outdir=out/js/pages --watch',
|
|
29
29
|
'serve:11ty': 'eleventy --serve --quiet',
|
|
30
|
-
'clean': 'node
|
|
30
|
+
'clean': 'node _tools/cleanOutput.js',
|
|
31
31
|
'serve': 'npm run clean && concurrently "npm run serve:11ty" "npm run serve:css" "npm run serve:js"',
|
|
32
|
-
'assistant': 'node
|
|
32
|
+
'assistant': 'node _tools/assistant.js',
|
|
33
33
|
},
|
|
34
34
|
dependencies: {
|
|
35
35
|
'@11ty/eleventy': '^3.1.2',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-berna-stencil",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
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",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"bin/",
|
|
34
34
|
"src/",
|
|
35
|
-
"
|
|
35
|
+
"_tools/",
|
|
36
36
|
".eleventy.js",
|
|
37
37
|
".eleventyignore",
|
|
38
38
|
".gitignore",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"serve:css": "sass --watch src/scss:out/css --no-source-map --quiet",
|
|
65
65
|
"serve:js": "esbuild \"src/js/pages/*.js\" --bundle --outdir=out/js/pages --watch",
|
|
66
66
|
"serve:11ty": "eleventy --serve --quiet",
|
|
67
|
-
"clean": "node
|
|
67
|
+
"clean": "node _tools/cleanOutput.js",
|
|
68
68
|
"serve": "npm run clean && concurrently \"npm run serve:11ty\" \"npm run serve:css\" \"npm run serve:js\"",
|
|
69
|
-
"assistant": "node
|
|
69
|
+
"assistant": "node _tools/assistant.js"
|
|
70
70
|
}
|
|
71
71
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|