circuit-json-to-lbrn 0.0.46 → 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.
@@ -0,0 +1 @@
1
+ * @AnasSarkiz
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 from GitHub issue
81
+ // Default laser settings
82
82
  const defaultCopperSettings = {
83
83
  speed: 300,
84
84
  numPasses: 100,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "circuit-json-to-lbrn",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.46",
4
+ "version": "0.0.48",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "start": "bun run site/index.html",
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
  )