ide-assi 0.131.0 → 0.132.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.
@@ -193518,22 +193518,22 @@ class IdeAi
193518
193518
  files.forEach(async (file) => {
193519
193519
 
193520
193520
  params1.push({
193521
- "path": `/tmpl/${file}`,
193522
- "contents": await fetch(`/api/templates/${file}`).then(res => res.text()),
193521
+ path: `/tmpl/${file}`,
193522
+ contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
193523
193523
  });
193524
193524
 
193525
193525
  params.push({
193526
- "path": `aaa`,
193527
- "contents": "aa",
193526
+ path: `aaa`,
193527
+ contents: "aa",
193528
193528
  });
193529
193529
  });
193530
193530
 
193531
- console.log(JSON.stringify({"list":params}), JSON.stringify({"list":params1}));
193531
+ console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
193532
193532
 
193533
193533
  await fetch(`/api/source/generateRealFile`, {
193534
193534
  method: "POST",
193535
193535
  headers: { "Content-Type": "application/json" },
193536
- body: JSON.stringify({"list":params})
193536
+ body: JSON.stringify({list:params})
193537
193537
  });
193538
193538
 
193539
193539
  return;
@@ -193514,22 +193514,22 @@ class IdeAi
193514
193514
  files.forEach(async (file) => {
193515
193515
 
193516
193516
  params1.push({
193517
- "path": `/tmpl/${file}`,
193518
- "contents": await fetch(`/api/templates/${file}`).then(res => res.text()),
193517
+ path: `/tmpl/${file}`,
193518
+ contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
193519
193519
  });
193520
193520
 
193521
193521
  params.push({
193522
- "path": `aaa`,
193523
- "contents": "aa",
193522
+ path: `aaa`,
193523
+ contents: "aa",
193524
193524
  });
193525
193525
  });
193526
193526
 
193527
- console.log(JSON.stringify({"list":params}), JSON.stringify({"list":params1}));
193527
+ console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
193528
193528
 
193529
193529
  await fetch(`/api/source/generateRealFile`, {
193530
193530
  method: "POST",
193531
193531
  headers: { "Content-Type": "application/json" },
193532
- body: JSON.stringify({"list":params})
193532
+ body: JSON.stringify({list:params})
193533
193533
  });
193534
193534
 
193535
193535
  return;
@@ -224,22 +224,22 @@ export class IdeAi
224
224
  files.forEach(async (file) => {
225
225
 
226
226
  params1.push({
227
- "path": `/tmpl/${file}`,
228
- "contents": await fetch(`/api/templates/${file}`).then(res => res.text()),
227
+ path: `/tmpl/${file}`,
228
+ contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
229
229
  });
230
230
 
231
231
  params.push({
232
- "path": `aaa`,
233
- "contents": "aa",
232
+ path: `aaa`,
233
+ contents: "aa",
234
234
  });
235
235
  });
236
236
 
237
- console.log(JSON.stringify({"list":params}), JSON.stringify({"list":params1}));
237
+ console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
238
238
 
239
239
  await fetch(`/api/source/generateRealFile`, {
240
240
  method: "POST",
241
241
  headers: { "Content-Type": "application/json" },
242
- body: JSON.stringify({"list":params})
242
+ body: JSON.stringify({list:params})
243
243
  });
244
244
 
245
245
  return;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.131.0",
4
+ "version": "0.132.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -224,22 +224,22 @@ export class IdeAi
224
224
  files.forEach(async (file) => {
225
225
 
226
226
  params1.push({
227
- "path": `/tmpl/${file}`,
228
- "contents": await fetch(`/api/templates/${file}`).then(res => res.text()),
227
+ path: `/tmpl/${file}`,
228
+ contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
229
229
  });
230
230
 
231
231
  params.push({
232
- "path": `aaa`,
233
- "contents": "aa",
232
+ path: `aaa`,
233
+ contents: "aa",
234
234
  });
235
235
  });
236
236
 
237
- console.log(JSON.stringify({"list":params}), JSON.stringify({"list":params1}));
237
+ console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
238
238
 
239
239
  await fetch(`/api/source/generateRealFile`, {
240
240
  method: "POST",
241
241
  headers: { "Content-Type": "application/json" },
242
- body: JSON.stringify({"list":params})
242
+ body: JSON.stringify({list:params})
243
243
  });
244
244
 
245
245
  return;