@d-zero/scaffold 5.0.0-beta.5 → 5.0.0-beta.7

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,18 @@
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.7](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-beta.6...v5.0.0-beta.7) (2025-10-03)
7
+
8
+ ### Features
9
+
10
+ - **builder:** add --clear-cache option to CLI ([a09aa0b](https://github.com/d-zero-dev/frontend-env/commit/a09aa0b304a7c693a2b856314a39ffa25f35141e))
11
+
12
+ # [5.0.0-beta.6](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-beta.5...v5.0.0-beta.6) (2025-10-03)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **scaffold:** filter empty strings in breadcrumb depth calculation ([02d5ffc](https://github.com/d-zero-dev/frontend-env/commit/02d5ffc7935b055d22fbb9dbf0cf2ee7767fc60a))
17
+
6
18
  # [5.0.0-beta.5](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-beta.4...v5.0.0-beta.5) (2025-09-17)
7
19
 
8
20
  ### Bug Fixes
package/README.md CHANGED
@@ -4,10 +4,11 @@
4
4
 
5
5
  ## コマンド
6
6
 
7
- | コマンド | 実行される内容 |
8
- | ------------ | ---------------------------------------------------- |
9
- | `yarn` | 必要なパッケージのインストール |
10
- | `yarn dev` | 開発用ローカル環境の起動( http://localhost:8080/ ) |
11
- | `yarn lint` | リントチェック |
12
- | `yarn build` | ビルド |
13
- | `yarn up` | 依存パッケージのアップデート |
7
+ | コマンド | 実行される内容 |
8
+ | -------------------------- | ---------------------------------------------------- |
9
+ | `yarn` | 必要なパッケージのインストール |
10
+ | `yarn dev` | 開発用ローカル環境の起動( http://localhost:8080/ ) |
11
+ | `yarn lint` | リントチェック |
12
+ | `yarn build` | ビルド |
13
+ | `yarn build --clear-cache` | ビルド(キャッシュをクリア) |
14
+ | `yarn up` | 依存パッケージのアップデート |
@@ -12,7 +12,7 @@ export default function () {
12
12
  .map((item) => ({
13
13
  title: getTitle(item),
14
14
  href: item.page.url,
15
- depth: item.page.url.split('/').length,
15
+ depth: item.page.url.split('/').filter(Boolean).length,
16
16
  }))
17
17
  .sort((a, b) => a.depth - b.depth);
18
18
  return breadcrumbs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/scaffold",
3
- "version": "5.0.0-beta.5",
3
+ "version": "5.0.0-beta.7",
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.",
@@ -43,32 +43,32 @@
43
43
  "last 2 ios_saf version"
44
44
  ],
45
45
  "devDependencies": {
46
- "@burger-editor/local": "4.0.0-alpha.20",
47
- "@d-zero/builder": "5.0.0-beta.5",
46
+ "@burger-editor/local": "4.0.0-alpha.25",
47
+ "@d-zero/builder": "5.0.0-beta.7",
48
48
  "@d-zero/linters": "5.0.0-alpha.71",
49
- "@d-zero/postcss-config": "5.0.0-beta.5",
49
+ "@d-zero/postcss-config": "5.0.0-beta.7",
50
50
  "@d-zero/tsconfig": "0.5.0",
51
- "@types/node": "24.5.1",
52
- "cross-env": "10.0.0",
53
- "dotenv": "17.2.2",
51
+ "@types/node": "24.6.2",
52
+ "cross-env": "10.1.0",
53
+ "dotenv": "17.2.3",
54
54
  "husky": "9.1.7",
55
55
  "jsdom": "27.0.0",
56
56
  "npm-run-all2": "8.0.4",
57
- "typescript": "5.9.2",
57
+ "typescript": "5.9.3",
58
58
  "vitest": "3.2.4"
59
59
  },
60
60
  "dependencies": {
61
- "@burger-editor/css": "4.0.0-alpha.20",
62
- "@d-zero/custom-components": "5.0.0-beta.5",
61
+ "@burger-editor/css": "4.0.0-alpha.25",
62
+ "@d-zero/custom-components": "5.0.0-beta.7",
63
63
  "dialog-toggle-events-polyfill": "1.1.4",
64
64
  "invokers-polyfill": "0.5.7",
65
65
  "kiso.css": "1.2.2",
66
66
  "tslib": "2.8.1"
67
67
  },
68
- "packageManager": "yarn@4.9.4",
68
+ "packageManager": "yarn@4.10.3",
69
69
  "volta": {
70
- "node": "24.8.0",
71
- "yarn": "4.9.4"
70
+ "node": "24.9.0",
71
+ "yarn": "4.10.3"
72
72
  },
73
- "gitHead": "d1c2f9a70e6d4c4d72e823489b1cc79468b20965"
73
+ "gitHead": "2f1fa82fe195a3db4b2121b915de128c6fe24c12"
74
74
  }