@d-zero/scaffold 5.0.0-alpha.34 → 5.0.0-alpha.36
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/markuplint.config.js +15 -3
- package/package.json +7 -7
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.36](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.35...v5.0.0-alpha.36) (2025-01-06)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **scaffold:** fix markuplint config ([e302169](https://github.com/d-zero-dev/frontend-env/commit/e302169a04d5e45afe0b5f6b3b080846e9fe496b))
|
|
11
|
+
|
|
12
|
+
# [5.0.0-alpha.35](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.34...v5.0.0-alpha.35) (2024-12-23)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @d-zero/scaffold
|
|
15
|
+
|
|
6
16
|
# [5.0.0-alpha.34](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.33...v5.0.0-alpha.34) (2024-12-16)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @d-zero/scaffold
|
package/markuplint.config.js
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
import { extendsConfig } from '@d-zero/markuplint-config';
|
|
2
2
|
|
|
3
|
+
const extended = extendsConfig({
|
|
4
|
+
// classNaming: ['/^splide(?:__[a-z]+)?$/'],
|
|
5
|
+
});
|
|
6
|
+
|
|
3
7
|
export default {
|
|
4
|
-
...
|
|
5
|
-
// classNaming: ['/^splide(?:__[a-z]+)?$/'],
|
|
6
|
-
}),
|
|
8
|
+
...extended,
|
|
7
9
|
nodeRules: [
|
|
10
|
+
...extended.nodeRules,
|
|
11
|
+
{
|
|
12
|
+
// Revert requiring `width` and `height` attributes from the preset config.
|
|
13
|
+
// @see https://github.com/markuplint/markuplint/blob/dev/packages/%40markuplint/config-presets/src/preset.performance.json
|
|
14
|
+
// Due to assigning them automatically by the build process.
|
|
15
|
+
selector: 'img[src]',
|
|
16
|
+
rules: {
|
|
17
|
+
'required-attr': false,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
8
20
|
{
|
|
9
21
|
selector: '.c-pagination a',
|
|
10
22
|
rules: {
|
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.36",
|
|
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.",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@d-zero/builder": "5.0.0-alpha.34",
|
|
41
|
-
"@d-zero/linters": "5.0.0-alpha.
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-alpha.
|
|
41
|
+
"@d-zero/linters": "5.0.0-alpha.55",
|
|
42
|
+
"@d-zero/postcss-config": "5.0.0-alpha.36",
|
|
43
43
|
"@d-zero/tsconfig": "0.4.1",
|
|
44
|
-
"@types/node": "22.10.
|
|
44
|
+
"@types/node": "22.10.5",
|
|
45
45
|
"cross-env": "7.0.3",
|
|
46
46
|
"husky": "9.1.7",
|
|
47
|
-
"npm-run-all2": "7.0.
|
|
48
|
-
"sass": "1.83.
|
|
47
|
+
"npm-run-all2": "7.0.2",
|
|
48
|
+
"sass": "1.83.1",
|
|
49
49
|
"typescript": "5.7.2",
|
|
50
50
|
"vitest": "2.1.8"
|
|
51
51
|
},
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"node": "22.12.0",
|
|
58
58
|
"yarn": "1.22.22"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "87ef22c2cdb0102483a2862909151cb4e0d3aa46"
|
|
61
61
|
}
|