@d-zero/scaffold 5.0.0-alpha.39 → 5.0.0-alpha.41
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 +10 -0
- package/eleventy.config.mjs +2 -12
- package/markuplint.config.js +9 -0
- package/package.json +9 -9
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.41](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.40...v5.0.0-alpha.41) (2025-03-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @d-zero/scaffold
|
|
9
|
+
|
|
10
|
+
# [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)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **builder:** add option `outDir` ([a3d0843](https://github.com/d-zero-dev/frontend-env/commit/a3d0843afd50db2305661a65a863c0c9fa2223fd))
|
|
15
|
+
|
|
6
16
|
# [5.0.0-alpha.39](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.38...v5.0.0-alpha.39) (2025-02-12)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @d-zero/scaffold
|
package/eleventy.config.mjs
CHANGED
|
@@ -16,19 +16,9 @@ export default function (eleventyConfig) {
|
|
|
16
16
|
},
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* The directory where the source files are located.
|
|
20
20
|
*/
|
|
21
|
-
//
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Output directory for JavaScript files
|
|
25
|
-
*/
|
|
26
|
-
// outputJsDir: 'js',
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Output directory for image files
|
|
30
|
-
*/
|
|
31
|
-
// outputImgDir: 'img',
|
|
21
|
+
// outDir: 'htdocs',
|
|
32
22
|
|
|
33
23
|
/**
|
|
34
24
|
* Prettier options.
|
package/markuplint.config.js
CHANGED
|
@@ -4,6 +4,9 @@ const extended = extendsConfig({
|
|
|
4
4
|
// classNaming: ['/^splide(?:__[a-z]+)?$/'],
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* @type {import('@markuplint/ml-config').Config}
|
|
9
|
+
*/
|
|
7
10
|
export default {
|
|
8
11
|
...extended,
|
|
9
12
|
nodeRules: [
|
|
@@ -24,4 +27,10 @@ export default {
|
|
|
24
27
|
},
|
|
25
28
|
},
|
|
26
29
|
],
|
|
30
|
+
// overrides: {
|
|
31
|
+
// ...extended.overrides,
|
|
32
|
+
// '**/*.pug': {
|
|
33
|
+
// ...
|
|
34
|
+
// },
|
|
35
|
+
// },
|
|
27
36
|
};
|
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.41",
|
|
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,17 +37,17 @@
|
|
|
37
37
|
"last 2 ios_saf version"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@d-zero/builder": "5.0.0-alpha.
|
|
41
|
-
"@d-zero/linters": "5.0.0-alpha.
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-alpha.
|
|
40
|
+
"@d-zero/builder": "5.0.0-alpha.41",
|
|
41
|
+
"@d-zero/linters": "5.0.0-alpha.60",
|
|
42
|
+
"@d-zero/postcss-config": "5.0.0-alpha.41",
|
|
43
43
|
"@d-zero/tsconfig": "0.4.1",
|
|
44
|
-
"@types/node": "22.13.
|
|
44
|
+
"@types/node": "22.13.8",
|
|
45
45
|
"cross-env": "7.0.3",
|
|
46
46
|
"husky": "9.1.7",
|
|
47
47
|
"npm-run-all2": "7.0.2",
|
|
48
|
-
"sass": "1.
|
|
49
|
-
"typescript": "5.
|
|
50
|
-
"vitest": "3.0.
|
|
48
|
+
"sass": "1.85.1",
|
|
49
|
+
"typescript": "5.8.2",
|
|
50
|
+
"vitest": "3.0.7"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"destyle.css": "4.0.1",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"node": "22.14.0",
|
|
58
58
|
"yarn": "1.22.22"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "7d2a6aa41d103833181fa8b8e34951cd3450b2c2"
|
|
61
61
|
}
|