@d-zero/scaffold 5.0.0-alpha.7 → 5.0.0-alpha.8
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 +4 -0
- package/__assets/htdocs/__tmpl/000_home.pug +5 -5
- package/__assets/htdocs/__tmpl/100_sub.pug +7 -7
- package/__assets/htdocs/__tmpl/200_blog_index.pug +9 -9
- package/__assets/htdocs/__tmpl/210_blog_index.pug +9 -9
- package/__assets/htdocs/__tmpl/300_form_input.pug +7 -7
- package/__assets/htdocs/__tmpl/301_form_confirm.pug +7 -7
- package/__assets/htdocs/__tmpl/302_form_complete.pug +7 -7
- package/__assets/htdocs/sub-folder.test/index.pug +1 -1
- package/eleventy.config.cjs +4 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.8](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.7...v5.0.0-alpha.8) (2024-05-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @d-zero/scaffold
|
|
9
|
+
|
|
6
10
|
# [5.0.0-alpha.7](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.6...v5.0.0-alpha.7) (2024-05-14)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @d-zero/scaffold
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__サイトタイトル__')
|
|
5
5
|
body.c-page-home
|
|
6
6
|
.c-page-home__base
|
|
7
7
|
.c-page-home__header
|
|
8
8
|
- const isHome = true;
|
|
9
|
-
include
|
|
9
|
+
include /component/_c-header.pug
|
|
10
10
|
.c-page-home__nav-global
|
|
11
|
-
include
|
|
11
|
+
include /component/_c-nav-global.pug
|
|
12
12
|
|
|
13
13
|
.c-page-home__main
|
|
14
14
|
main
|
|
15
15
|
h2 メイン
|
|
16
16
|
|
|
17
17
|
.c-page-home__nav-sitemap
|
|
18
|
-
include
|
|
18
|
+
include /component/_c-nav-sitemap.pug
|
|
19
19
|
.c-page-home__footer
|
|
20
|
-
include
|
|
20
|
+
include /component/_c-footer.pug
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__ページタイトル__ | __サイトタイトル__')
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include
|
|
8
|
+
include /component/_c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include
|
|
10
|
+
include /component/_c-nav-global.pug
|
|
11
11
|
.c-page-sub__main
|
|
12
12
|
main
|
|
13
13
|
article.c-page-sub__content
|
|
14
14
|
.c-page-sub__title-page
|
|
15
|
-
include
|
|
15
|
+
include /component/_c-title-page.pug
|
|
16
16
|
.c-page-sub__nav-breadcrumb
|
|
17
|
-
include
|
|
17
|
+
include /component/_c-nav-breadcrumb.pug
|
|
18
18
|
.c-page-sub__content-main
|
|
19
19
|
.c-content-main !{ blocks }
|
|
20
20
|
.c-page-sub__nav-sitemap
|
|
21
|
-
include
|
|
21
|
+
include /component/_c-nav-sitemap.pug
|
|
22
22
|
.c-page-sub__footer
|
|
23
|
-
include
|
|
23
|
+
include /component/_c-footer.pug
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__ページタイトル__ | __サイトタイトル__')
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include
|
|
8
|
+
include /component/_c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include
|
|
10
|
+
include /component/_c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
article.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include
|
|
16
|
+
include /component/_c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include
|
|
18
|
+
include /component/_c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-index
|
|
20
20
|
.c-content-index
|
|
21
21
|
.c-content-index__categories
|
|
@@ -30,11 +30,11 @@ html(lang="ja")
|
|
|
30
30
|
.c-content-index__body
|
|
31
31
|
.c-media-list
|
|
32
32
|
each article in data.articles
|
|
33
|
-
include
|
|
33
|
+
include /component/_c-media.pug
|
|
34
34
|
.c-page-sub__pagination
|
|
35
|
-
include
|
|
35
|
+
include /component/_c-pagination.pug
|
|
36
36
|
|
|
37
37
|
.c-page-sub__nav-sitemap
|
|
38
|
-
include
|
|
38
|
+
include /component/_c-nav-sitemap.pug
|
|
39
39
|
.c-page-sub__footer
|
|
40
|
-
include
|
|
40
|
+
include /component/_c-footer.pug
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__ページタイトル__ | __サイトタイトル__')
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include
|
|
8
|
+
include /component/_c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include
|
|
10
|
+
include /component/_c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
article.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include
|
|
16
|
+
include /component/_c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include
|
|
18
|
+
include /component/_c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-index
|
|
20
20
|
.c-content-index
|
|
21
21
|
.c-content-index__categories
|
|
@@ -30,11 +30,11 @@ html(lang="ja")
|
|
|
30
30
|
.c-content-index__body
|
|
31
31
|
.c-card-list
|
|
32
32
|
each article in data.articles
|
|
33
|
-
include
|
|
33
|
+
include /component/_c-card.pug
|
|
34
34
|
.c-page-sub__pagination
|
|
35
|
-
include
|
|
35
|
+
include /component/_c-pagination.pug
|
|
36
36
|
|
|
37
37
|
.c-page-sub__nav-sitemap
|
|
38
|
-
include
|
|
38
|
+
include /component/_c-nav-sitemap.pug
|
|
39
39
|
.c-page-sub__footer
|
|
40
|
-
include
|
|
40
|
+
include /component/_c-footer.pug
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__ページタイトル__ | __サイトタイトル__')
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include
|
|
8
|
+
include /component/_c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include
|
|
10
|
+
include /component/_c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include
|
|
16
|
+
include /component/_c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include
|
|
18
|
+
include /component/_c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-main
|
|
20
20
|
.c-content-main
|
|
21
21
|
// CMS要件: メールフォーム概要
|
|
@@ -564,6 +564,6 @@ html(lang="ja")
|
|
|
564
564
|
value="__TOKEN__")
|
|
565
565
|
|
|
566
566
|
.c-page-sub__nav-sitemap
|
|
567
|
-
include
|
|
567
|
+
include /component/_c-nav-sitemap.pug
|
|
568
568
|
.c-page-sub__footer
|
|
569
|
-
include
|
|
569
|
+
include /component/_c-footer.pug
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__ページタイトル__ | __サイトタイトル__')
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include
|
|
8
|
+
include /component/_c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include
|
|
10
|
+
include /component/_c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include
|
|
16
|
+
include /component/_c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include
|
|
18
|
+
include /component/_c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-main
|
|
20
20
|
.c-content-main
|
|
21
21
|
.cc-form-description
|
|
@@ -206,6 +206,6 @@ html(lang="ja")
|
|
|
206
206
|
button(type="submit"): span 送信する
|
|
207
207
|
|
|
208
208
|
.c-page-sub__nav-sitemap
|
|
209
|
-
include
|
|
209
|
+
include /component/_c-nav-sitemap.pug
|
|
210
210
|
.c-page-sub__footer
|
|
211
|
-
include
|
|
211
|
+
include /component/_c-footer.pug
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
html(lang="ja")
|
|
2
2
|
head
|
|
3
|
-
include
|
|
3
|
+
include /mixin/meta.pug
|
|
4
4
|
+meta('__ページタイトル__ | __サイトタイトル__')
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include
|
|
8
|
+
include /component/_c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include
|
|
10
|
+
include /component/_c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include
|
|
16
|
+
include /component/_c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include
|
|
18
|
+
include /component/_c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-main
|
|
20
20
|
.c-content-main
|
|
21
21
|
.cc-form-description
|
|
22
22
|
p 送信ありがとうございました。
|
|
23
23
|
|
|
24
24
|
.c-page-sub__nav-sitemap
|
|
25
|
-
include
|
|
25
|
+
include /component/_c-nav-sitemap.pug
|
|
26
26
|
.c-page-sub__footer
|
|
27
|
-
include
|
|
27
|
+
include /component/_c-footer.pug
|
package/eleventy.config.cjs
CHANGED
|
@@ -7,6 +7,10 @@ module.exports = function (eleventyConfig) {
|
|
|
7
7
|
'@': path.resolve(__dirname, '__assets', '_libs'),
|
|
8
8
|
});
|
|
9
9
|
|
|
10
|
+
eleventyConfig.setPugOptions({
|
|
11
|
+
basedir: path.resolve(__dirname, '__assets', '_libs'),
|
|
12
|
+
});
|
|
13
|
+
|
|
10
14
|
if (process.env.NODE_ENV === 'production') {
|
|
11
15
|
eleventyConfig.addGlobalData('prettier', true);
|
|
12
16
|
// eleventyConfig.addGlobalData('minifier', { minifyJS: false });
|
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.8",
|
|
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.",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"last 2 ios_saf version"
|
|
34
34
|
],
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@d-zero/builder": "5.0.0-alpha.
|
|
37
|
-
"@d-zero/linters": "5.0.0-alpha.
|
|
38
|
-
"@d-zero/postcss-config": "5.0.0-alpha.
|
|
36
|
+
"@d-zero/builder": "5.0.0-alpha.8",
|
|
37
|
+
"@d-zero/linters": "5.0.0-alpha.31",
|
|
38
|
+
"@d-zero/postcss-config": "5.0.0-alpha.8",
|
|
39
39
|
"@d-zero/tsconfig": "0.2.0",
|
|
40
40
|
"@types/node": "20.12.12",
|
|
41
41
|
"cross-env": "7.0.3",
|
|
42
|
-
"npm-run-all2": "6.
|
|
43
|
-
"sass": "1.77.
|
|
42
|
+
"npm-run-all2": "6.2.0",
|
|
43
|
+
"sass": "1.77.2",
|
|
44
44
|
"typescript": "5.4.5"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"tslib": "2.6.2"
|
|
49
49
|
},
|
|
50
50
|
"volta": {
|
|
51
|
-
"node": "22.
|
|
51
|
+
"node": "22.2.0",
|
|
52
52
|
"yarn": "1.22.22"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "54795ac0cc526ff91b6fba685240b1578a43bd4d"
|
|
55
55
|
}
|