circuit-json-to-lbrn 0.0.47 → 0.0.48
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/lib/index.ts +1 -1
- package/package.json +1 -1
- package/site/main.tsx +1 -1
package/lib/index.ts
CHANGED
|
@@ -78,7 +78,7 @@ export const convertCircuitJsonToLbrn = async (
|
|
|
78
78
|
const includeCopperCutFill = options.includeCopperCutFill ?? false
|
|
79
79
|
const copperCutFillMargin = options.copperCutFillMargin ?? 0.5
|
|
80
80
|
|
|
81
|
-
// Default laser settings
|
|
81
|
+
// Default laser settings
|
|
82
82
|
const defaultCopperSettings = {
|
|
83
83
|
speed: 300,
|
|
84
84
|
numPasses: 100,
|
package/package.json
CHANGED
package/site/main.tsx
CHANGED
|
@@ -262,7 +262,7 @@ async function convertAndDisplay() {
|
|
|
262
262
|
// Convert to LBRN
|
|
263
263
|
console.log("Converting to LBRN with options:", options)
|
|
264
264
|
const { origin: _, ...conversionOptions } = options
|
|
265
|
-
currentLbrnProject = convertCircuitJsonToLbrn(
|
|
265
|
+
currentLbrnProject = await convertCircuitJsonToLbrn(
|
|
266
266
|
processedCircuitJson,
|
|
267
267
|
conversionOptions,
|
|
268
268
|
)
|