@tscircuit/core 0.0.1462 → 0.0.1463
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3122,7 +3122,7 @@ var getObstaclesFromCircuitJson = (circuitJson, connMap) => {
|
|
|
3122
3122
|
}
|
|
3123
3123
|
];
|
|
3124
3124
|
}),
|
|
3125
|
-
element.source_trace_id
|
|
3125
|
+
element.source_trace_id ?? element.pcb_trace_id
|
|
3126
3126
|
);
|
|
3127
3127
|
obstacles.push(
|
|
3128
3128
|
...traceObstacles.map((obstacle) => ({
|
|
@@ -16686,6 +16686,8 @@ var getSimpleRouteJsonFromCircuitJson = ({
|
|
|
16686
16686
|
...db.pcb_smtpad.list(),
|
|
16687
16687
|
...db.pcb_plated_hole.list(),
|
|
16688
16688
|
...db.pcb_hole.list(),
|
|
16689
|
+
// Footprint copper primitives such as solder-jumper bridges are fixed.
|
|
16690
|
+
...db.pcb_trace.list().filter((trace) => !trace.source_trace_id),
|
|
16689
16691
|
...db.pcb_via.list().filter(
|
|
16690
16692
|
(via) => !ignoreExistingTopLevelPcbRouteState || Boolean(via.subcircuit_id)
|
|
16691
16693
|
),
|
|
@@ -22863,7 +22865,7 @@ function Group_getRoutingPhasePlans(group) {
|
|
|
22863
22865
|
var package_default = {
|
|
22864
22866
|
name: "@tscircuit/core",
|
|
22865
22867
|
type: "module",
|
|
22866
|
-
version: "0.0.
|
|
22868
|
+
version: "0.0.1462",
|
|
22867
22869
|
types: "dist/index.d.ts",
|
|
22868
22870
|
main: "dist/index.js",
|
|
22869
22871
|
module: "dist/index.js",
|