@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 +9 -0
- package/dist/cli.js +6 -30
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -1507,44 +1507,20 @@ export function App() {
|
|
|
1507
1507
|
-moz-osx-font-smoothing: grayscale;
|
|
1508
1508
|
}
|
|
1509
1509
|
|
|
1510
|
-
/* ──
|
|
1511
|
-
/* Override these to
|
|
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.
|
|
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
|
-
"@doodle-engine/react": "0.0.
|
|
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",
|