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