juxscript 1.0.110 → 1.0.112
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/create/index.jux +0 -8
- package/machinery/compiler3.js +1 -0
- package/package.json +1 -1
package/create/index.jux
CHANGED
|
@@ -69,11 +69,3 @@ const footer = Element('footer-content', { tag: 'div' })
|
|
|
69
69
|
.html('© 2025 Jux Project. Open Source.')
|
|
70
70
|
.style('display:flex; align-items:center; justify-content:center; height:100%; background:#111; color:#666;')
|
|
71
71
|
.render('landing-layout-3-0');
|
|
72
|
-
|
|
73
|
-
// 6. Global Reset (injected via Element)
|
|
74
|
-
Element('reset-styles', { tag: 'style' })
|
|
75
|
-
.text(`
|
|
76
|
-
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: #fff; color: #111; }
|
|
77
|
-
button:hover { transform: scale(1.05); }
|
|
78
|
-
`)
|
|
79
|
-
.render('app');
|
package/machinery/compiler3.js
CHANGED
|
@@ -213,6 +213,7 @@ export class JuxCompiler {
|
|
|
213
213
|
if (this.themePath) {
|
|
214
214
|
const themeName = path.basename(this.themePath);
|
|
215
215
|
links.push(` <link rel="stylesheet" href="./themes/${themeName}" id="jux-theme">`);
|
|
216
|
+
console.log(`🎨 🎨 🎨 🎨 Included theme: ${themeName} 🎨 🎨 🎨 🎨 `);
|
|
216
217
|
}
|
|
217
218
|
|
|
218
219
|
return links.join('\n');
|