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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.714.0",
4
+ "version": "0.715.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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."));