@doodle-engine/cli 0.0.19 → 0.0.20

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @doodle-engine/cli
2
2
 
3
+ ## 0.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 96d5194: fix missing css
8
+ - Updated dependencies [96d5194]
9
+ - @doodle-engine/react@0.0.20
10
+ - @doodle-engine/core@0.0.20
11
+
3
12
  ## 0.0.19
4
13
 
5
14
  ### Patch Changes
package/dist/cli.js CHANGED
@@ -1507,44 +1507,20 @@ export function App() {
1507
1507
  -moz-osx-font-smoothing: grayscale;
1508
1508
  }
1509
1509
 
1510
- /* ── Shell CSS variables ──────────────────────────────────────────── */
1511
- /* Override these to theme the loading, splash, and title screens. */
1510
+ /* ── Theme overrides ──────────────────────────────────────────────── */
1511
+ /* Override these variables to customize the shell screens. */
1512
+ /* Full variable list: node_modules/@doodle-engine/react/dist/shell.css */
1512
1513
 
1514
+ /*
1513
1515
  :root {
1514
1516
  --doodle-bg-primary: #0f0f23;
1515
1517
  --doodle-bg-secondary: #1a1a2e;
1516
- --doodle-text-primary: #ffffff;
1517
- --doodle-text-secondary: #a0a0b0;
1518
1518
  --doodle-accent: #6366f1;
1519
- --doodle-accent-hover: #818cf8;
1520
- --doodle-font-family: system-ui, -apple-system, sans-serif;
1521
- }
1522
-
1523
- /* ── Bootstrap loader (shown before manifest/content are fetched) ─── */
1524
-
1525
- .app-bootstrap {
1526
- position: fixed;
1527
- inset: 0;
1528
- display: flex;
1529
- align-items: center;
1530
- justify-content: center;
1531
- background: var(--doodle-bg-primary);
1532
- }
1533
-
1534
- .app-bootstrap .spinner {
1535
- width: 40px;
1536
- height: 40px;
1537
- border: 3px solid rgba(255, 255, 255, 0.1);
1538
- border-top-color: var(--doodle-accent);
1539
- border-radius: 50%;
1540
- animation: spin 0.8s linear infinite;
1541
- }
1542
-
1543
- @keyframes spin {
1544
- to { transform: rotate(360deg); }
1545
1519
  }
1520
+ */
1546
1521
  `, je = `import { StrictMode } from 'react'
1547
1522
  import { createRoot } from 'react-dom/client'
1523
+ import '@doodle-engine/react/style.css'
1548
1524
  import { App } from './App'
1549
1525
  import './index.css'
1550
1526
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doodle-engine/cli",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "type": "module",
5
5
  "description": "CLI tools for Doodle Engine game development",
6
6
  "bin": {
@@ -15,8 +15,8 @@
15
15
  "test": "echo no tests"
16
16
  },
17
17
  "dependencies": {
18
- "@doodle-engine/core": "0.0.19",
19
- "@doodle-engine/react": "0.0.19",
18
+ "@doodle-engine/core": "0.0.20",
19
+ "@doodle-engine/react": "0.0.20",
20
20
  "@vitejs/plugin-react": "^4.3.0",
21
21
  "chokidar": "^4.0.0",
22
22
  "commander": "^12.0.0",