@tscircuit/footprinter 0.0.352 → 0.0.353
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 +1 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -684,14 +684,7 @@ var cap = (parameters) => {
|
|
|
684
684
|
|
|
685
685
|
// src/fn/led.ts
|
|
686
686
|
var led = (parameters) => {
|
|
687
|
-
|
|
688
|
-
if (element.type !== "pcb_silkscreen_path") return element;
|
|
689
|
-
return {
|
|
690
|
-
...element,
|
|
691
|
-
route: element.route.map((point) => ({ ...point, x: -point.x }))
|
|
692
|
-
};
|
|
693
|
-
});
|
|
694
|
-
return { circuitJson, parameters };
|
|
687
|
+
return { circuitJson: passive(parameters), parameters };
|
|
695
688
|
};
|
|
696
689
|
|
|
697
690
|
// src/helpers/res0402-array2.ts
|