@d-zero/scaffold 5.0.0-alpha.24 → 5.0.0-alpha.25

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/.markuplintrc CHANGED
@@ -1,3 +1,11 @@
1
1
  {
2
- "extends": ["@d-zero/markuplint-config"]
2
+ "extends": ["@d-zero/markuplint-config"],
3
+ "nodeRules": [
4
+ {
5
+ "selector": ".c-pagination a",
6
+ "rules": {
7
+ "required-attr": false
8
+ }
9
+ }
10
+ ]
3
11
  }
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-alpha.25](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.24...v5.0.0-alpha.25) (2024-10-29)
7
+
8
+ ### Features
9
+
10
+ - **scaffold:** add `.bge-content` styles with `bge-style.css` ([081f7ee](https://github.com/d-zero-dev/frontend-env/commit/081f7ee9e03b659ec9b964f0bcb17dee2b3be9ec))
11
+ - **scaffold:** add `checkJs=false` to tsconfig ([1fb9ed1](https://github.com/d-zero-dev/frontend-env/commit/1fb9ed1d1d34004748f3fd7c1caeebcc6ade597d))
12
+
6
13
  # [5.0.0-alpha.24](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.23...v5.0.0-alpha.24) (2024-10-24)
7
14
 
8
15
  ### Features
@@ -0,0 +1,6 @@
1
+ @use './c-content-main.scss' as *;
2
+
3
+ // stylelint-disable-next-line selector-class-pattern
4
+ .bge-content {
5
+ @extend .c-content-main;
6
+ }
@@ -20,7 +20,7 @@ html(lang="ja")
20
20
  .c-content-main
21
21
  // CMS要件: メールフォーム概要
22
22
  .cc-form-description
23
- p こちらのフォームよりご応募ください。<br>記入いただいた内容を検討の上、弊社人事担当者よりメールにてご返信いたします。
23
+ p こちらのフォームよりご応募ください。記入いただいた内容を検討の上、弊社人事担当者よりメールにてご返信いたします。
24
24
  // CMS要件: メールフォーム概要ここまで
25
25
 
26
26
  form#MailMessageIndexForm.cc-form(
@@ -0,0 +1,18 @@
1
+ @import 'destyle.css' layer(reset);
2
+
3
+ @layer base {
4
+ @import '@/style/base/root.scss';
5
+ }
6
+
7
+ @layer general {
8
+ @import '@/style/general/all.scss';
9
+ @import '@/style/general/body.scss';
10
+ @import '@/style/general/button.scss';
11
+ @import '@/style/general/img.scss';
12
+ }
13
+
14
+ @layer components {
15
+ @import '@/component/bge-content.scss';
16
+ }
17
+
18
+ @layer reset, base, general, components;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/scaffold",
3
- "version": "5.0.0-alpha.24",
3
+ "version": "5.0.0-alpha.25",
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.24",
41
- "@d-zero/linters": "5.0.0-alpha.46",
42
- "@d-zero/postcss-config": "5.0.0-alpha.24",
43
- "@d-zero/tsconfig": "0.3.2",
44
- "@types/node": "22.7.9",
40
+ "@d-zero/builder": "5.0.0-alpha.25",
41
+ "@d-zero/linters": "5.0.0-alpha.48",
42
+ "@d-zero/postcss-config": "5.0.0-alpha.25",
43
+ "@d-zero/tsconfig": "0.3.3",
44
+ "@types/node": "22.8.2",
45
45
  "cross-env": "7.0.3",
46
46
  "husky": "9.1.6",
47
47
  "npm-run-all2": "7.0.1",
48
48
  "sass": "1.80.4",
49
49
  "typescript": "5.6.3",
50
- "vitest": "2.1.3"
50
+ "vitest": "2.1.4"
51
51
  },
52
52
  "dependencies": {
53
53
  "destyle.css": "4.0.1",
@@ -57,5 +57,5 @@
57
57
  "node": "22.10.0",
58
58
  "yarn": "1.22.22"
59
59
  },
60
- "gitHead": "133d378cb3485e1008f5637d12a2288a01e3b3ab"
60
+ "gitHead": "a5e901787293d253e2ba91dac6624cc73f4d60a5"
61
61
  }
package/tsconfig.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "extends": ["@d-zero/tsconfig"],
3
3
  "compilerOptions": {
4
+ "checkJs": false,
4
5
  "noEmit": true, // Instead to use Vite,
5
6
  "paths": {
6
7
  "@/*": ["./__assets/_libs/*"]