@d-zero/scaffold 5.0.0-alpha.40 → 5.0.0-alpha.42
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/.gitignore +5 -2
- package/CHANGELOG.md +10 -0
- package/__assets/htdocs/sub-folder.test/build.test.pug +9 -0
- package/package.json +5 -5
package/.gitignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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-alpha.42](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.41...v5.0.0-alpha.42) (2025-03-06)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **scaffold:** update .gitignore to reflect correct temporary directory ([aa17c0c](https://github.com/d-zero-dev/frontend-env/commit/aa17c0caee9c01792b9ef15de78ce50919ce5b78))
|
|
11
|
+
|
|
12
|
+
# [5.0.0-alpha.41](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.40...v5.0.0-alpha.41) (2025-03-03)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @d-zero/scaffold
|
|
15
|
+
|
|
6
16
|
# [5.0.0-alpha.40](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.39...v5.0.0-alpha.40) (2025-03-03)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
html(lang="ja")
|
|
2
|
+
head
|
|
3
|
+
meta(charset="UTF-8")
|
|
4
|
+
title テストファイル
|
|
5
|
+
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
|
6
|
+
meta(http-equiv="X-UA-Compatible" content="ie=edge")
|
|
7
|
+
body
|
|
8
|
+
//- 画像取得テスト
|
|
9
|
+
p: img(src="/img/pict-star.test.png" alt="イラスト: 黄色い星型図形")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-zero/scaffold",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.42",
|
|
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.",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"last 2 ios_saf version"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@d-zero/builder": "5.0.0-alpha.
|
|
40
|
+
"@d-zero/builder": "5.0.0-alpha.42",
|
|
41
41
|
"@d-zero/linters": "5.0.0-alpha.60",
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-alpha.
|
|
42
|
+
"@d-zero/postcss-config": "5.0.0-alpha.42",
|
|
43
43
|
"@d-zero/tsconfig": "0.4.1",
|
|
44
|
-
"@types/node": "22.13.
|
|
44
|
+
"@types/node": "22.13.9",
|
|
45
45
|
"cross-env": "7.0.3",
|
|
46
46
|
"husky": "9.1.7",
|
|
47
47
|
"npm-run-all2": "7.0.2",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"node": "22.14.0",
|
|
58
58
|
"yarn": "1.22.22"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "05d2e3386535b08b726cc1766aef098363c0ce5f"
|
|
61
61
|
}
|