@nine-lab/nine-mu 0.1.96 → 0.1.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.96",
3
+ "version": "0.1.97",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -150,7 +150,7 @@ export class NineChat extends HTMLElement {
150
150
  const res = await api.post(`/nine-mu/source/readFile`, { path: this.#routesPath });
151
151
  trace.log(res);
152
152
 
153
- if (!rec || !res?.contents) return;
153
+ if (!res || !res?.contents) return;
154
154
 
155
155
  const jsonRoutes = res?.contents ? JSON.parse(res?.contents) : {};
156
156
  trace.log(jsonRoutes);