circuit-json-to-kicad 0.0.5 → 0.0.6
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1338,7 +1338,6 @@ var CircuitJsonToKicadPcbConverter = class {
|
|
|
1338
1338
|
|
|
1339
1339
|
// lib/project/CircuitJsonToKicadProConverter.ts
|
|
1340
1340
|
import { cju as cju3 } from "@tscircuit/circuit-json-util";
|
|
1341
|
-
import { randomUUID } from "crypto";
|
|
1342
1341
|
var CircuitJsonToKicadProConverter = class {
|
|
1343
1342
|
ctx;
|
|
1344
1343
|
project;
|
|
@@ -1405,7 +1404,7 @@ var CircuitJsonToKicadProConverter = class {
|
|
|
1405
1404
|
},
|
|
1406
1405
|
last_opened_board: pcbFilename
|
|
1407
1406
|
},
|
|
1408
|
-
sheets: [[
|
|
1407
|
+
sheets: [[Math.random().toString(36).substring(2, 15), "Root"]]
|
|
1409
1408
|
};
|
|
1410
1409
|
}
|
|
1411
1410
|
runUntilFinished() {
|