@d-zero/scaffold 5.0.0-beta.1 → 5.0.0-beta.3
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 +10 -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/burgereditor.config.js +24 -0
- package/package.json +10 -8
|
@@ -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.3",
|
|
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.3",
|
|
41
43
|
"@d-zero/linters": "5.0.0-alpha.65",
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-beta.
|
|
43
|
-
"@d-zero/tsconfig": "0.
|
|
44
|
-
"@types/node": "22.
|
|
44
|
+
"@d-zero/postcss-config": "5.0.0-beta.3",
|
|
45
|
+
"@d-zero/tsconfig": "0.5.0",
|
|
46
|
+
"@types/node": "22.16.3",
|
|
45
47
|
"cross-env": "7.0.3",
|
|
46
48
|
"husky": "9.1.7",
|
|
47
49
|
"npm-run-all2": "8.0.4",
|
|
@@ -49,8 +51,8 @@
|
|
|
49
51
|
"vitest": "3.2.4"
|
|
50
52
|
},
|
|
51
53
|
"dependencies": {
|
|
52
|
-
"@burger-editor/css": "
|
|
53
|
-
"@d-zero/custom-components": "5.0.0-beta.
|
|
54
|
+
"@burger-editor/css": "4.0.0-alpha.9",
|
|
55
|
+
"@d-zero/custom-components": "5.0.0-beta.3",
|
|
54
56
|
"dialog-toggle-events-polyfill": "1.1.4",
|
|
55
57
|
"invokers-polyfill": "0.5.5",
|
|
56
58
|
"kiso.css": "1.2.1",
|
|
@@ -61,5 +63,5 @@
|
|
|
61
63
|
"node": "22.17.0",
|
|
62
64
|
"yarn": "4.9.2"
|
|
63
65
|
},
|
|
64
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "3718c3c21f1ccca8242039452f10226a6b0bd1e2"
|
|
65
67
|
}
|