ide-assi 0.230.0 → 0.232.0

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.
@@ -193837,7 +193837,7 @@ class IdeAi
193837
193837
  this.#parent.addMessage("Java(Controller) 소스파일을 생성했습니다.");
193838
193838
 
193839
193839
 
193840
- const jsSrc = await this.#generateTmplFile("/prompts/meta/U.BuildReactJsx.txt", "react.jsx", {
193840
+ await this.#generateTmplFile("/prompts/meta/U.BuildReactJsx.txt", "react.jsx", {
193841
193841
  userPrompt: userPrompt,
193842
193842
  originSrc: src.javascript,
193843
193843
  menuUrl: where.menu.url,
@@ -193848,11 +193848,7 @@ class IdeAi
193848
193848
  });
193849
193849
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
193850
193850
 
193851
- console.log(src.javascript);
193852
- console.log("======================");
193853
- console.log(jsSrc);
193854
-
193855
- return;
193851
+ await this.#generateRealFile(srcPath);
193856
193852
  };
193857
193853
 
193858
193854
  generateSourceClient = async (userPrompt) => {
@@ -193833,7 +193833,7 @@ class IdeAi
193833
193833
  this.#parent.addMessage("Java(Controller) 소스파일을 생성했습니다.");
193834
193834
 
193835
193835
 
193836
- const jsSrc = await this.#generateTmplFile("/prompts/meta/U.BuildReactJsx.txt", "react.jsx", {
193836
+ await this.#generateTmplFile("/prompts/meta/U.BuildReactJsx.txt", "react.jsx", {
193837
193837
  userPrompt: userPrompt,
193838
193838
  originSrc: src.javascript,
193839
193839
  menuUrl: where.menu.url,
@@ -193844,11 +193844,7 @@ class IdeAi
193844
193844
  });
193845
193845
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
193846
193846
 
193847
- console.log(src.javascript);
193848
- console.log("======================");
193849
- console.log(jsSrc);
193850
-
193851
- return;
193847
+ await this.#generateRealFile(srcPath);
193852
193848
  };
193853
193849
 
193854
193850
  generateSourceClient = async (userPrompt) => {
@@ -432,12 +432,6 @@ export class IdeAi
432
432
  });
433
433
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
434
434
 
435
- console.log(src.javascript);
436
- console.log("======================");
437
- console.log(jsSrc);
438
-
439
- return;
440
-
441
435
  await this.#generateRealFile(srcPath);
442
436
  };
443
437
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.230.0",
4
+ "version": "0.232.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -432,12 +432,6 @@ export class IdeAi
432
432
  });
433
433
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
434
434
 
435
- console.log(src.javascript);
436
- console.log("======================");
437
- console.log(jsSrc);
438
-
439
- return;
440
-
441
435
  await this.#generateRealFile(srcPath);
442
436
  };
443
437