@nine-lab/nine-mu 0.1.402 โ†’ 0.1.404

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.402",
3
+ "version": "0.1.404",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -1,6 +1,6 @@
1
1
  import { trace } from '@nopeer';
2
2
  import { api } from '@nine-lab/nine-util';
3
- import { TipPopup } from '@nine-lab/nine-ai';
3
+ //import { TipPopup } from '@nine-lab/nine-ai';
4
4
 
5
5
  export class NineNatualQuery extends HTMLElement {
6
6
 
@@ -63,8 +63,12 @@ const createDynamicRoutes = (menuData, projectViews, Custom404) => {
63
63
  combinedName += words.map(w => w.charAt(0).toUpperCase() + w.slice(1)).join("");
64
64
  }
65
65
  const pascalName = combinedName || "GeneratedComponent";
66
- const sanitizedParts = pathParts.map(part => part.replace(/-/g, "_"));
67
- const fullFolderPath = sanitizedParts.join("/");
66
+
67
+ // ๐ŸŽฏ [๋ฒ„๊ทธ ์ˆ˜์ • ํฌ์ธํŠธ] ํด๋” ๊ตฌ์กฐ์˜ ํ•˜์ดํ”ˆ(-)์„ ์–ธ๋”๋ฐ”๋กœ ๋ฐ”๊พธ์ง€ ์•Š๊ณ  ์‹ค์ œ ํด๋”๋ช… ๊ทธ๋Œ€๋กœ ์œ ์ง€ํ•ฉ๋‹ˆ๋‹ค.
68
+ // ๊ธฐ์กด: const sanitizedParts = pathParts.map(part => part.replace(/-/g, "_"));
69
+ // ๊ธฐ์กด: const fullFolderPath = sanitizedParts.join("/");
70
+
71
+ const fullFolderPath = pathParts.join("/"); // โญ• ์‹ค์ œ ๋ฌผ๋ฆฌ ํด๋” ๊ตฌ์กฐ(nine/query-aaa) ๊ทธ๋Œ€๋กœ ์œ ์ง€
68
72
 
69
73
  // ์‚ฌ์šฉ์ž ํ”„๋กœ์ ํŠธ ๋ฃจํŠธ ๊ธฐ์ค€ ์ƒ๋Œ€ ๊ฒฝ๋กœ ๋งคํ•‘
70
74
  const componentPath = `${fullFolderPath}/${pascalName}.jsx`;
package/src/index.js CHANGED
@@ -5,7 +5,7 @@ import { NineDiffPopup } from './components/NineDiffPopup.js';
5
5
  import { NineMenuDiffPopup } from './components/NineMenuDiffPopup.js';
6
6
  import './components/ChatMessage.js';
7
7
  import './components/ai/NineNatualQuery.js';
8
- import './components/ai/NineNatualQueryResult.js';
8
+ //import './components/ai/NineNatualQueryResult.js';
9
9
  import { NineHook, useScreen } from './components/hook/NineHook.js';
10
10
 
11
11
  /**