@tscircuit/cli 0.0.110 → 0.0.111

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.
@@ -1,4 +1,4 @@
1
- import apiServer from "../../../dev-server-api/dist/bundle"
1
+ import apiServer from "../../../dev-server-api"
2
2
  import frontendVfs from "../../../dev-server-frontend/dist/bundle"
3
3
  import EdgeRuntimePrimitives from "@edge-runtime/primitives"
4
4
  import mime from "mime-types"
@@ -21,7 +21,7 @@ export const devServerRequestHandler = async (bunReq: Request) => {
21
21
  body: bunReq.body,
22
22
  })
23
23
 
24
- const response = await apiServer.makeRequest(req, {})
24
+ const response = await apiServer.makeRequest(req as any, {})
25
25
  return response
26
26
  } else if (requestType === "preview") {
27
27
  let frontendPath = url.pathname.replace("/preview", "")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.0.110",
3
+ "version": "0.0.111",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Command line tool for developing, publishing and installing tscircuit circuits",