@tscircuit/cli 0.0.166 → 0.0.168

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/bun.lockb CHANGED
Binary file
@@ -24,7 +24,7 @@ export const versionCmd = async (ctx: AppContext, args: any) => {
24
24
  })
25
25
  table.push({
26
26
  name: "@tscircuit/builder",
27
- current: cliPackageJson.devDependencies["@tscircuit/builder"],
27
+ current: cliPackageJson.dependencies["@tscircuit/builder"],
28
28
  })
29
29
 
30
30
  if (args.showLatest) {
@@ -32,14 +32,14 @@ export const exportGerbersToFile = async (
32
32
 
33
33
  console.log(kleur.gray("[soup to gerber json]..."))
34
34
  const gerber_layer_cmds = convertSoupToGerberCommands(soup, {
35
- flip_y_axis: true,
35
+ flip_y_axis: false,
36
36
  })
37
37
 
38
38
  console.log(kleur.gray("[soup to drl json]..."))
39
39
  const drill_cmds = convertSoupToExcellonDrillCommands({
40
40
  soup,
41
41
  is_plated: true,
42
- flip_y_axis: true,
42
+ flip_y_axis: false,
43
43
  })
44
44
 
45
45
  console.log(kleur.gray("[stringify gerber json]..."))