@tscircuit/core 0.0.679 → 0.0.680

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8613,7 +8613,12 @@ function Group_doInitialSchematicLayoutMatchPack(group) {
8613
8613
  }
8614
8614
  debug5("Converting circuit tree to InputProblem...");
8615
8615
  const inputProblem = convertTreeToInputProblem(tree, db, group);
8616
- debug5("InputProblem:", JSON.stringify(inputProblem, null, 2));
8616
+ if (debug5.enabled) {
8617
+ global.debugOutputs?.add(
8618
+ `matchpack-input-problem-${group.name}`,
8619
+ JSON.stringify(inputProblem, null, 2)
8620
+ );
8621
+ }
8617
8622
  const solver = new LayoutPipelineSolver(inputProblem);
8618
8623
  debug5("Starting LayoutPipelineSolver...");
8619
8624
  if (debug5.enabled && global.debugGraphics) {
@@ -13995,7 +14000,7 @@ import { identity as identity5 } from "transformation-matrix";
13995
14000
  var package_default = {
13996
14001
  name: "@tscircuit/core",
13997
14002
  type: "module",
13998
- version: "0.0.678",
14003
+ version: "0.0.679",
13999
14004
  types: "dist/index.d.ts",
14000
14005
  main: "dist/index.js",
14001
14006
  module: "dist/index.js",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.679",
4
+ "version": "0.0.680",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",