ide-assi 0.132.0 → 0.133.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 +3 -2
- package/dist/bundle.esm.js +3 -2
- package/dist/components/ideAi.js +3 -2
- package/package.json +1 -1
- package/src/components/ideAi.js +3 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -193515,12 +193515,13 @@ class IdeAi
|
|
|
193515
193515
|
const files = ["mybatis.xml", "service.java", "controller.java", "react.jsx"];
|
|
193516
193516
|
let params = [];
|
|
193517
193517
|
let params1 = [];
|
|
193518
|
-
files.forEach(
|
|
193518
|
+
files.forEach((file) => {
|
|
193519
193519
|
|
|
193520
|
+
/**
|
|
193520
193521
|
params1.push({
|
|
193521
193522
|
path: `/tmpl/${file}`,
|
|
193522
193523
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
193523
|
-
});
|
|
193524
|
+
}); */
|
|
193524
193525
|
|
|
193525
193526
|
params.push({
|
|
193526
193527
|
path: `aaa`,
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193511,12 +193511,13 @@ class IdeAi
|
|
|
193511
193511
|
const files = ["mybatis.xml", "service.java", "controller.java", "react.jsx"];
|
|
193512
193512
|
let params = [];
|
|
193513
193513
|
let params1 = [];
|
|
193514
|
-
files.forEach(
|
|
193514
|
+
files.forEach((file) => {
|
|
193515
193515
|
|
|
193516
|
+
/**
|
|
193516
193517
|
params1.push({
|
|
193517
193518
|
path: `/tmpl/${file}`,
|
|
193518
193519
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
193519
|
-
});
|
|
193520
|
+
}); */
|
|
193520
193521
|
|
|
193521
193522
|
params.push({
|
|
193522
193523
|
path: `aaa`,
|
package/dist/components/ideAi.js
CHANGED
|
@@ -221,12 +221,13 @@ export class IdeAi
|
|
|
221
221
|
const files = ["mybatis.xml", "service.java", "controller.java", "react.jsx"];
|
|
222
222
|
let params = [];
|
|
223
223
|
let params1 = [];
|
|
224
|
-
files.forEach(
|
|
224
|
+
files.forEach((file) => {
|
|
225
225
|
|
|
226
|
+
/**
|
|
226
227
|
params1.push({
|
|
227
228
|
path: `/tmpl/${file}`,
|
|
228
229
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
229
|
-
});
|
|
230
|
+
}); */
|
|
230
231
|
|
|
231
232
|
params.push({
|
|
232
233
|
path: `aaa`,
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -221,12 +221,13 @@ export class IdeAi
|
|
|
221
221
|
const files = ["mybatis.xml", "service.java", "controller.java", "react.jsx"];
|
|
222
222
|
let params = [];
|
|
223
223
|
let params1 = [];
|
|
224
|
-
files.forEach(
|
|
224
|
+
files.forEach((file) => {
|
|
225
225
|
|
|
226
|
+
/**
|
|
226
227
|
params1.push({
|
|
227
228
|
path: `/tmpl/${file}`,
|
|
228
229
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
229
|
-
});
|
|
230
|
+
}); */
|
|
230
231
|
|
|
231
232
|
params.push({
|
|
232
233
|
path: `aaa`,
|