ide-assi 0.711.0 → 0.714.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.
- package/dist/bundle.cjs.js +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/components/ideAi.js +2 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -202861,6 +202861,8 @@ class IdeAi
|
|
|
202861
202861
|
const mainfiles = this.prompt.react.filter(item => item.includes(".main.") || item.includes(".all."));
|
|
202862
202862
|
const subfiles = this.prompt.react.filter(item => item.includes(".sub.") || item.includes(".all."));
|
|
202863
202863
|
|
|
202864
|
+
console.log(what, mainfiles, subfiles);
|
|
202865
|
+
|
|
202864
202866
|
if (["C1","U1"].includes(what)) {
|
|
202865
202867
|
generatedSource.javascriptFrom = await this.#generateTmplFile(mainfiles, "reactFrom.jsx", {
|
|
202866
202868
|
userPrompt: userPrompt,
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202857,6 +202857,8 @@ class IdeAi
|
|
|
202857
202857
|
const mainfiles = this.prompt.react.filter(item => item.includes(".main.") || item.includes(".all."));
|
|
202858
202858
|
const subfiles = this.prompt.react.filter(item => item.includes(".sub.") || item.includes(".all."));
|
|
202859
202859
|
|
|
202860
|
+
console.log(what, mainfiles, subfiles);
|
|
202861
|
+
|
|
202860
202862
|
if (["C1","U1"].includes(what)) {
|
|
202861
202863
|
generatedSource.javascriptFrom = await this.#generateTmplFile(mainfiles, "reactFrom.jsx", {
|
|
202862
202864
|
userPrompt: userPrompt,
|
package/dist/components/ideAi.js
CHANGED
|
@@ -335,6 +335,8 @@ export class IdeAi
|
|
|
335
335
|
const mainfiles = this.prompt.react.filter(item => item.includes(".main.") || item.includes(".all."));
|
|
336
336
|
const subfiles = this.prompt.react.filter(item => item.includes(".sub.") || item.includes(".all."));
|
|
337
337
|
|
|
338
|
+
console.log(what, mainfiles, subfiles);
|
|
339
|
+
|
|
338
340
|
if (["C1","U1"].includes(what)) {
|
|
339
341
|
generatedSource.javascriptFrom = await this.#generateTmplFile(mainfiles, "reactFrom.jsx", {
|
|
340
342
|
userPrompt: userPrompt,
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -335,6 +335,8 @@ export class IdeAi
|
|
|
335
335
|
const mainfiles = this.prompt.react.filter(item => item.includes(".main.") || item.includes(".all."));
|
|
336
336
|
const subfiles = this.prompt.react.filter(item => item.includes(".sub.") || item.includes(".all."));
|
|
337
337
|
|
|
338
|
+
console.log(what, mainfiles, subfiles);
|
|
339
|
+
|
|
338
340
|
if (["C1","U1"].includes(what)) {
|
|
339
341
|
generatedSource.javascriptFrom = await this.#generateTmplFile(mainfiles, "reactFrom.jsx", {
|
|
340
342
|
userPrompt: userPrompt,
|