@d-zero/scaffold 5.0.0-beta.0 → 5.0.0-beta.2
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 -0
- package/CHANGELOG.md +12 -0
- package/__assets/_libs/component/c-content-main.css +112 -5
- package/__assets/_libs/data/bge-blocks-v2.html +2101 -0
- package/__assets/_libs/data/bge-blocks.html +1040 -1824
- package/__assets/_libs/data/blocks.js +1 -1
- package/__assets/htdocs/css/bge_style.css +3 -2
- package/__assets/htdocs/css/style.css +17 -16
- package/burgereditor.config.js +24 -0
- package/package.json +11 -8
- package/__assets/_libs/component/bge-contents.css +0 -7
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
@import '@/style/general/body.css' layer(general);
|
|
5
5
|
@import '@/style/general/button.css' layer(general);
|
|
6
6
|
@import '@/style/general/img.css' layer(general);
|
|
7
|
-
@import '
|
|
7
|
+
@import '@burger-editor/css' layer(main-base);
|
|
8
|
+
@import '@/component/c-content-main.css' layer(main);
|
|
8
9
|
|
|
9
|
-
@layer reset, base, general;
|
|
10
|
+
@layer reset, base, general, main-base, main-component;
|
|
@@ -4,20 +4,21 @@
|
|
|
4
4
|
@import '@/style/general/body.css' layer(general);
|
|
5
5
|
@import '@/style/general/button.css' layer(general);
|
|
6
6
|
@import '@/style/general/img.css' layer(general);
|
|
7
|
-
@import '@/component/c-page-home.css';
|
|
8
|
-
@import '@/component/c-page-sub.css';
|
|
9
|
-
@import '@/component/c-header.css';
|
|
10
|
-
@import '@/component/c-footer.css';
|
|
11
|
-
@import '@/component/c-nav-global.css';
|
|
12
|
-
@import '@/component/c-nav-sitemap.css';
|
|
13
|
-
@import '@/component/c-nav-breadcrumb.css';
|
|
14
|
-
@import '@/component/c-title-page.css';
|
|
15
|
-
@import '@/component/c-pagination.css';
|
|
16
|
-
@import '@/component/c-card-list.css';
|
|
17
|
-
@import '@/component/c-card.css';
|
|
18
|
-
@import '@/component/c-media-list.css';
|
|
19
|
-
@import '@/component/c-media.css';
|
|
20
|
-
@import '@/component/c-content-index.css';
|
|
21
|
-
@import '
|
|
7
|
+
@import '@/component/c-page-home.css' layer(component);
|
|
8
|
+
@import '@/component/c-page-sub.css' layer(component);
|
|
9
|
+
@import '@/component/c-header.css' layer(component);
|
|
10
|
+
@import '@/component/c-footer.css' layer(component);
|
|
11
|
+
@import '@/component/c-nav-global.css' layer(component);
|
|
12
|
+
@import '@/component/c-nav-sitemap.css' layer(component);
|
|
13
|
+
@import '@/component/c-nav-breadcrumb.css' layer(component);
|
|
14
|
+
@import '@/component/c-title-page.css' layer(component);
|
|
15
|
+
@import '@/component/c-pagination.css' layer(component);
|
|
16
|
+
@import '@/component/c-card-list.css' layer(component);
|
|
17
|
+
@import '@/component/c-card.css' layer(component);
|
|
18
|
+
@import '@/component/c-media-list.css' layer(component);
|
|
19
|
+
@import '@/component/c-media.css' layer(component);
|
|
20
|
+
@import '@/component/c-content-index.css' layer(component);
|
|
21
|
+
@import '@burger-editor/css' layer(main-base);
|
|
22
|
+
@import '@/component/c-content-main.css' layer(main);
|
|
22
23
|
|
|
23
|
-
@layer reset, base, general;
|
|
24
|
+
@layer reset, base, general, component, main-base, main;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import path from 'node:path';
|
|
2
|
+
|
|
3
|
+
import { config } from 'dotenv';
|
|
4
|
+
|
|
5
|
+
config();
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @type {import('@burger-editor/local').LocalServerConfig}
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
documentRoot: path.join(import.meta.dirname, 'htdocs'),
|
|
12
|
+
lang: 'ja',
|
|
13
|
+
stylesheets: ['/css/style.css'],
|
|
14
|
+
classList: ['c-content-main'],
|
|
15
|
+
editableArea: '.c-content-main',
|
|
16
|
+
googleMapsApiKey: process.env.GOOGLE_MAPS_API_KEY,
|
|
17
|
+
sampleImagePath: '/files/images/sample.png',
|
|
18
|
+
filesDir: {
|
|
19
|
+
image: '/files/images',
|
|
20
|
+
other: '/files/others',
|
|
21
|
+
},
|
|
22
|
+
port: 8100,
|
|
23
|
+
open: true,
|
|
24
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-zero/scaffold",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.2",
|
|
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.",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"lint:spell": "npx cspell --no-progress --show-suggestions \"**\"",
|
|
25
25
|
"lint:text": "npx textlint \"./__assets/**/*.{pug,html}\"",
|
|
26
26
|
"test": "vitest run",
|
|
27
|
+
"bge": "npx @burger-editor/local",
|
|
27
28
|
"print": "npx @d-zero/print -f __info/print.txt --type note",
|
|
28
29
|
"prepare": "husky",
|
|
29
30
|
"up": "yarn upgrade-interactive --latest"
|
|
@@ -37,11 +38,12 @@
|
|
|
37
38
|
"last 2 ios_saf version"
|
|
38
39
|
],
|
|
39
40
|
"devDependencies": {
|
|
40
|
-
"@
|
|
41
|
+
"@burger-editor/local": "4.0.0-alpha.9",
|
|
42
|
+
"@d-zero/builder": "5.0.0-beta.2",
|
|
41
43
|
"@d-zero/linters": "5.0.0-alpha.65",
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-beta.
|
|
44
|
+
"@d-zero/postcss-config": "5.0.0-beta.2",
|
|
43
45
|
"@d-zero/tsconfig": "0.4.1",
|
|
44
|
-
"@types/node": "22.15.
|
|
46
|
+
"@types/node": "22.15.34",
|
|
45
47
|
"cross-env": "7.0.3",
|
|
46
48
|
"husky": "9.1.7",
|
|
47
49
|
"npm-run-all2": "8.0.4",
|
|
@@ -49,16 +51,17 @@
|
|
|
49
51
|
"vitest": "3.2.4"
|
|
50
52
|
},
|
|
51
53
|
"dependencies": {
|
|
52
|
-
"@
|
|
54
|
+
"@burger-editor/css": "4.0.0-alpha.9",
|
|
55
|
+
"@d-zero/custom-components": "5.0.0-beta.2",
|
|
53
56
|
"dialog-toggle-events-polyfill": "1.1.4",
|
|
54
57
|
"invokers-polyfill": "0.5.5",
|
|
55
|
-
"kiso.css": "1.1
|
|
58
|
+
"kiso.css": "1.2.1",
|
|
56
59
|
"tslib": "2.8.1"
|
|
57
60
|
},
|
|
58
61
|
"packageManager": "yarn@4.9.2",
|
|
59
62
|
"volta": {
|
|
60
|
-
"node": "22.
|
|
63
|
+
"node": "22.17.0",
|
|
61
64
|
"yarn": "4.9.2"
|
|
62
65
|
},
|
|
63
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "681e9e12a80a72f24b7fc363e0edf0c60048f08d"
|
|
64
67
|
}
|