@tscircuit/eval 0.0.293 → 0.0.294
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/dist/blob-url.js +1 -1
- package/dist/eval/index.js +1 -3
- package/dist/lib/index.js +1 -3
- package/dist/webworker/entrypoint.js +393 -393
- package/package.json +1 -3
- package/tsup-webworker.config.ts +0 -1
- package/webworker/execution-context.ts +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/eval",
|
|
3
3
|
"main": "dist/lib/index.js",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.294",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "bun run build:lib && bun run build:webworker && bun run build:blob-url && bun run build:runner && bun run build:worker-wrapper",
|
|
@@ -92,7 +92,6 @@
|
|
|
92
92
|
"debug": "^4.3.6",
|
|
93
93
|
"graphics-debug": "^0.0.60",
|
|
94
94
|
"howfat": "^0.3.8",
|
|
95
|
-
"jscad-fiber": "^0.0.83",
|
|
96
95
|
"live-server": "^1.2.2",
|
|
97
96
|
"looks-same": "^9.0.1",
|
|
98
97
|
"pkg-pr-new": "^0.0.37",
|
|
@@ -108,7 +107,6 @@
|
|
|
108
107
|
"typescript": "^5.0.0",
|
|
109
108
|
"@tscircuit/core": "*",
|
|
110
109
|
"circuit-json": "*",
|
|
111
|
-
"jscad-fiber": "*",
|
|
112
110
|
"zod": "3"
|
|
113
111
|
}
|
|
114
112
|
}
|
package/tsup-webworker.config.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { RootCircuit } from "@tscircuit/core"
|
|
|
2
2
|
import type { WebWorkerConfiguration } from "lib/shared/types"
|
|
3
3
|
import * as tscircuitCore from "@tscircuit/core"
|
|
4
4
|
import * as React from "react"
|
|
5
|
-
import * as jscadFiber from "jscad-fiber"
|
|
6
5
|
import * as tscircuitMathUtils from "@tscircuit/math-utils"
|
|
7
6
|
import type { PlatformConfig } from "@tscircuit/props"
|
|
8
7
|
import { getPlatformConfig } from "lib/getPlatformConfig"
|
|
@@ -42,7 +41,6 @@ export function createExecutionContext(
|
|
|
42
41
|
tscircuit: tscircuitCore,
|
|
43
42
|
"@tscircuit/math-utils": tscircuitMathUtils,
|
|
44
43
|
react: React,
|
|
45
|
-
"jscad-fiber": jscadFiber,
|
|
46
44
|
|
|
47
45
|
// This is usually used as a type import, we can remove the shim when we
|
|
48
46
|
// ignore type imports in getImportsFromCode
|