@modular-circuit/transpiler 0.1.3 → 0.1.4

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/index.js CHANGED
@@ -327,6 +327,7 @@ async function collect_sub_sheets_by_id(module_ids, module_resolver) {
327
327
  design_block.pcb = { filename, content };
328
328
  }
329
329
  }
330
+ design_blocks.push(design_block);
330
331
  }
331
332
  return { sheets, module_main_sheet, modules, design_blocks };
332
333
  }
package/dist/index.mjs CHANGED
@@ -214,6 +214,7 @@ async function collect_sub_sheets_by_id(module_ids, module_resolver) {
214
214
  design_block.pcb = { filename, content };
215
215
  }
216
216
  }
217
+ design_blocks.push(design_block);
217
218
  }
218
219
  return { sheets, module_main_sheet, modules, design_blocks };
219
220
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modular-circuit/transpiler",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Intermediate representation of the modular circuit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",