juxscript 1.1.375 → 1.1.376

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.
@@ -60,6 +60,11 @@ const paths = {
60
60
  const DIST_DIR = paths.distribution;
61
61
  const SRC_DIR = paths.source;
62
62
 
63
+ // Near the top, after config is loaded — ensure precompile is extracted:
64
+ const precompile = {
65
+ juxfiles: rawConfig.precompile?.juxfiles || [],
66
+ };
67
+
63
68
  const app = express();
64
69
  let lastBuildResult = { success: true, errors: [] };
65
70
 
@@ -107,11 +112,6 @@ app.use((req, res, next) => {
107
112
  app.get('/favicon.ico', (req, res) => res.status(204).end());
108
113
  app.get('/favicon.png', (req, res) => res.status(204).end());
109
114
 
110
- // Near the top, after config is loaded — ensure precompile is extracted:
111
- const precompile = {
112
- juxfiles: rawConfig.precompile?.juxfiles || [],
113
- };
114
-
115
115
  // ═══════════════════════════════════════════════════════════════
116
116
  // API ROUTES — BEFORE static and catch-all
117
117
  // ═══════════════════════════════════════════════════════════════
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.375",
3
+ "version": "1.1.376",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "./dist/lib/index.js",