ide-assi 0.231.0 → 0.233.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,
@@ -193849,10 +193849,8 @@ class IdeAi
193849
193849
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
193850
193850
 
193851
193851
  console.log(src.javascript);
193852
- console.log("======================");
193853
- console.log(jsSrc);
193854
193852
 
193855
- return;
193853
+ await this.#generateRealFile(srcPath);
193856
193854
  };
193857
193855
 
193858
193856
  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,
@@ -193845,10 +193845,8 @@ class IdeAi
193845
193845
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
193846
193846
 
193847
193847
  console.log(src.javascript);
193848
- console.log("======================");
193849
- console.log(jsSrc);
193850
193848
 
193851
- return;
193849
+ await this.#generateRealFile(srcPath);
193852
193850
  };
193853
193851
 
193854
193852
  generateSourceClient = async (userPrompt) => {
@@ -433,10 +433,6 @@ export class IdeAi
433
433
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
434
434
 
435
435
  console.log(src.javascript);
436
- console.log("======================");
437
- console.log(jsSrc);
438
-
439
- return;
440
436
 
441
437
  await this.#generateRealFile(srcPath);
442
438
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.231.0",
4
+ "version": "0.233.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -433,10 +433,6 @@ export class IdeAi
433
433
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
434
434
 
435
435
  console.log(src.javascript);
436
- console.log("======================");
437
- console.log(jsSrc);
438
-
439
- return;
440
436
 
441
437
  await this.#generateRealFile(srcPath);
442
438
  };