@d-zero/scaffold 5.0.0-beta.15 → 5.0.0-beta.16

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/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-beta.16](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-beta.15...v5.0.0-beta.16) (2025-10-23)
7
+
8
+ ### Features
9
+
10
+ - **builder:** add parserOptions.pugOptions configuration ([803044c](https://github.com/d-zero-dev/frontend-env/commit/803044c4d3ea2e53dbf3cb30c61d4a46df847831))
11
+ - **scaffold:** add build scripts with cache clearing option ([6adb2be](https://github.com/d-zero-dev/frontend-env/commit/6adb2be332bf2d09b6afe1c450f7aec7c5129fc3))
12
+
6
13
  # [5.0.0-beta.15](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-beta.14...v5.0.0-beta.15) (2025-10-20)
7
14
 
8
15
  **Note:** Version bump only for package @d-zero/scaffold
@@ -67,5 +67,16 @@ export default function (eleventyConfig) {
67
67
  * Server Side Include options on the dev server.
68
68
  */
69
69
  // ssi: { '**/*': { encoding: 'shift_jis' } },
70
+
71
+ /**
72
+ * Parser options.
73
+ */
74
+ // parserOptions: {
75
+ // /**
76
+ // * Pug parser options.
77
+ // * @see https://pugjs.org/api/reference.html
78
+ // */
79
+ // pugOptions: { pretty: false },
80
+ // },
70
81
  });
71
82
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/scaffold",
3
- "version": "5.0.0-beta.15",
3
+ "version": "5.0.0-beta.16",
4
4
  "description": "Frontend scaffold files of D-ZERO Co., Ltd.",
5
5
  "repository": "https://github.com/d-zero-dev/frontend-env.git",
6
6
  "author": "D-ZERO Co., Ltd.",
@@ -17,6 +17,8 @@
17
17
  "scripts": {
18
18
  "build": "yarn lint && npx @d-zero/builder",
19
19
  "build:only": "npx @d-zero/builder",
20
+ "build:clear": "yarn lint && npx @d-zero/builder --clear-cache",
21
+ "build:only:cleaer": "npx @d-zero/builder --clear-cache",
20
22
  "dev": "npx eleventy --serve --watch",
21
23
  "d": "yarn dev",
22
24
  "lint": "run-s \"lint:*\"",
@@ -43,20 +45,20 @@
43
45
  "last 2 ios_saf version"
44
46
  ],
45
47
  "devDependencies": {
46
- "@burger-editor/local": "4.0.0-alpha.27",
47
- "@d-zero/builder": "5.0.0-beta.15",
48
+ "@burger-editor/local": "4.0.0-alpha.29",
49
+ "@d-zero/builder": "5.0.0-beta.16",
48
50
  "@d-zero/cspell-config": "5.0.0-alpha.73",
49
51
  "@d-zero/eslint-config": "5.0.0-alpha.73",
50
52
  "@d-zero/lint-staged-config": "5.0.0-alpha.73",
51
53
  "@d-zero/markuplint-config": "5.0.0-alpha.73",
52
- "@d-zero/postcss-config": "5.0.0-beta.15",
54
+ "@d-zero/postcss-config": "5.0.0-beta.16",
53
55
  "@d-zero/prettier-config": "5.0.0-alpha.73",
54
56
  "@d-zero/pug-lint-config": "5.0.0-alpha.73",
55
57
  "@d-zero/stylelint-config": "5.0.0-alpha.73",
56
58
  "@d-zero/textlint-config": "5.0.0-alpha.73",
57
59
  "@d-zero/tsconfig": "0.5.0",
58
60
  "@prettier/plugin-pug": "3.4.2",
59
- "@types/node": "24.8.1",
61
+ "@types/node": "24.9.1",
60
62
  "cross-env": "10.1.0",
61
63
  "dotenv": "17.2.3",
62
64
  "husky": "9.1.7",
@@ -66,8 +68,8 @@
66
68
  "vitest": "3.2.4"
67
69
  },
68
70
  "dependencies": {
69
- "@burger-editor/css": "4.0.0-alpha.27",
70
- "@d-zero/custom-components": "5.0.0-beta.15",
71
+ "@burger-editor/css": "4.0.0-alpha.29",
72
+ "@d-zero/custom-components": "5.0.0-beta.16",
71
73
  "dialog-toggle-events-polyfill": "1.1.4",
72
74
  "invokers-polyfill": "0.5.7",
73
75
  "kiso.css": "1.2.2",
@@ -78,5 +80,5 @@
78
80
  "node": "24.10.0",
79
81
  "yarn": "4.10.3"
80
82
  },
81
- "gitHead": "bcbf64fff4aed1835778e4f2d32ce62b728cc7a7"
83
+ "gitHead": "1c4941c9c616481599b50d8be059b4376d91b952"
82
84
  }