ide-assi 0.714.0 → 0.715.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/package.json +1 -1
- package/src/components/ideAi.js +4 -3
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -277,12 +277,12 @@ export class IdeAi
|
|
|
277
277
|
|
|
278
278
|
const src = await api.post("/api/source/read", srcPath);
|
|
279
279
|
console.log(src);
|
|
280
|
-
|
|
280
|
+
console.log(11111);
|
|
281
281
|
progressMessageInstance.updateProgress('prepare2', 'completed');
|
|
282
282
|
|
|
283
|
-
|
|
283
|
+
console.log(22222);
|
|
284
284
|
const columnInfo = await this.#getColumnInfo(where.table);
|
|
285
|
-
|
|
285
|
+
console.log(33333);
|
|
286
286
|
let generatedSource = {
|
|
287
287
|
mybatis: src.mybatis,
|
|
288
288
|
service: src.service,
|
|
@@ -331,6 +331,7 @@ export class IdeAi
|
|
|
331
331
|
}
|
|
332
332
|
|
|
333
333
|
if (apply.javascript) {
|
|
334
|
+
console.log(0);
|
|
334
335
|
|
|
335
336
|
const mainfiles = this.prompt.react.filter(item => item.includes(".main.") || item.includes(".all."));
|
|
336
337
|
const subfiles = this.prompt.react.filter(item => item.includes(".sub.") || item.includes(".all."));
|