@tscircuit/cli 0.0.55 → 0.0.57

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/soupify.ts CHANGED
@@ -47,9 +47,10 @@ console.log(JSON.stringify(elements))
47
47
  `.trim()
48
48
  )
49
49
 
50
- const runtime = ctx.runtime === "node" ? "npx tsx" : "bun"
50
+ const processCmdPart1 =
51
+ ctx.runtime === "node" ? $`npx tsx ${tmpFilePath}` : $`bun ${tmpFilePath}`
51
52
 
52
- const processResult = await $`${runtime} ${tmpFilePath}`
53
+ const processResult = await processCmdPart1
53
54
  .stdout("piped")
54
55
  .stderr("piped")
55
56
  .noThrow()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.0.55",
3
+ "version": "0.0.57",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Command line tool for developing, publishing and installing tscircuit circuits",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@edge-runtime/primitives": "^4.1.0",
37
37
  "@hono/node-server": "^1.8.2",
38
- "@tscircuit/builder": "1.5.33",
38
+ "@tscircuit/builder": "latest",
39
39
  "@tscircuit/react-fiber": "latest",
40
40
  "axios": "^1.6.7",
41
41
  "better-sqlite3": "^9.4.3",