bmdl-sdk 1.5.1 → 1.5.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/bin/init.js CHANGED
@@ -24,7 +24,7 @@ if (!existsSync(packageJsonPath)) {
24
24
  }
25
25
 
26
26
  const srcDir = resolve(projectRoot, 'src')
27
- const appDir = resolve(srcDir, 'App')
27
+ const appDir = resolve(srcDir, 'app')
28
28
  const publicDir = resolve(projectRoot, 'public')
29
29
  const folders = [srcDir, appDir, publicDir]
30
30
 
Binary file
package/index.html CHANGED
@@ -3,18 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>BMDL SDK - Widget Development</title>
7
- <style>
8
- * {
9
- margin: 0;
10
- padding: 0;
11
- box-sizing: border-box;
12
- }
13
- body {
14
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
15
- background: #fff;
16
- }
17
- </style>
6
+ <title>BMDL SDK</title>
18
7
  </head>
19
8
  <body>
20
9
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmdl-sdk",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -17,12 +17,9 @@
17
17
  "dependencies": {
18
18
  "@types/react": "^19.2.17",
19
19
  "@types/react-dom": "^19.2.3",
20
+ "@vitejs/plugin-react": "^4.0.0",
21
+ "vite": "^4.0.0",
20
22
  "react": "^19.2.7",
21
23
  "react-dom": "^19.2.7"
22
- },
23
- "devDependencies": {
24
- "@vitejs/plugin-react": "^4.0.0",
25
- "typescript": "^5.0.0",
26
- "vite": "^4.0.0"
27
24
  }
28
25
  }
Binary file