@d-zero/scaffold 5.0.0-beta.1 → 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.
@@ -1,6 +1,6 @@
1
1
  import fs from 'node:fs';
2
2
  import path from 'node:path';
3
3
 
4
- export default fs.readFileSync(path.resolve(import.meta.dirname, './blocks.html'), {
4
+ export default fs.readFileSync(path.resolve(import.meta.dirname, './bge-blocks.html'), {
5
5
  encoding: 'utf8',
6
6
  });
@@ -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.1",
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,9 +38,10 @@
37
38
  "last 2 ios_saf version"
38
39
  ],
39
40
  "devDependencies": {
40
- "@d-zero/builder": "5.0.0-beta.1",
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.1",
44
+ "@d-zero/postcss-config": "5.0.0-beta.2",
43
45
  "@d-zero/tsconfig": "0.4.1",
44
46
  "@types/node": "22.15.34",
45
47
  "cross-env": "7.0.3",
@@ -49,8 +51,8 @@
49
51
  "vitest": "3.2.4"
50
52
  },
51
53
  "dependencies": {
52
- "@burger-editor/css": "2.29.1",
53
- "@d-zero/custom-components": "5.0.0-beta.1",
54
+ "@burger-editor/css": "4.0.0-alpha.9",
55
+ "@d-zero/custom-components": "5.0.0-beta.2",
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": "a199bc3446a8753fb5557bf126f1b7d1716cab79"
66
+ "gitHead": "681e9e12a80a72f24b7fc363e0edf0c60048f08d"
65
67
  }