juxscript 1.1.123 → 1.1.125

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
  {
2
2
  "totalComponents": 69,
3
- "generatedAt": "2026-02-13T05:12:05.809Z",
3
+ "generatedAt": "2026-02-13T05:20:55.053Z",
4
4
  "components": [
5
5
  {
6
6
  "file": "alert.js",
@@ -517,20 +517,22 @@ navigate(location.pathname);
517
517
  <head>
518
518
  <meta charset="UTF-8">
519
519
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
520
- <title>JUX App</title>
520
+ <title>JUX Application</title>
521
521
  <script type="module" src="./bundle.js"></script>
522
+ <script src="/entry.js"></script>
522
523
  </head>
523
524
  <body>
524
525
  <div id="app"></div>
525
526
  </body>
526
527
  </html>`;
527
- fs.writeFileSync(path.join(this.distDir, 'index.html'), html);
528
528
 
529
- fs.unlinkSync(entryPath);
530
- fs.rmSync(juxDistDir, { recursive: true, force: true });
529
+ fs.writeFileSync(
530
+ path.join(this.config.distDir, 'index.html'),
531
+ html,
532
+ 'utf8'
533
+ );
531
534
 
532
- console.log(`\nBuild Complete!\n`);
533
- return { success: true, errors: [], warnings: validation.warnings };
535
+ console.log(' Generated index.html');
534
536
  }
535
537
 
536
538
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.123",
3
+ "version": "1.1.125",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "index.js",