@tscircuit/core 0.0.698 → 0.0.699
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 +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8109,7 +8109,10 @@ var getSimpleRouteJsonFromCircuitJson = ({
|
|
|
8109
8109
|
};
|
|
8110
8110
|
}
|
|
8111
8111
|
}
|
|
8112
|
-
const
|
|
8112
|
+
const routedTraceIds = new Set(
|
|
8113
|
+
db.pcb_trace.list().map((t) => t.source_trace_id).filter((id) => Boolean(id))
|
|
8114
|
+
);
|
|
8115
|
+
const directTraceConnections = db.source_trace.list().filter((trace) => !routedTraceIds.has(trace.source_trace_id)).map((trace) => {
|
|
8113
8116
|
const connectedPorts = trace.connected_source_port_ids.map((id) => {
|
|
8114
8117
|
const source_port = db.source_port.get(id);
|
|
8115
8118
|
const pcb_port = db.pcb_port.getWhere({ source_port_id: id });
|
|
@@ -14354,7 +14357,7 @@ import { identity as identity6 } from "transformation-matrix";
|
|
|
14354
14357
|
var package_default = {
|
|
14355
14358
|
name: "@tscircuit/core",
|
|
14356
14359
|
type: "module",
|
|
14357
|
-
version: "0.0.
|
|
14360
|
+
version: "0.0.698",
|
|
14358
14361
|
types: "dist/index.d.ts",
|
|
14359
14362
|
main: "dist/index.js",
|
|
14360
14363
|
module: "dist/index.js",
|