We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e8dab commit 4511a7dCopy full SHA for 4511a7d
3 files changed
packages/playground/package.json
@@ -15,6 +15,7 @@
15
"secure-exec": "workspace:*"
16
},
17
"devDependencies": {
18
+ "esbuild": "^0.27.1",
19
"monaco-editor": "0.52.2",
20
"pyodide": "0.28.3",
21
"typescript": "5.9.3"
packages/playground/scripts/build-worker.ts
@@ -1,7 +1,7 @@
1
import { readFile, writeFile } from "node:fs/promises";
2
import { dirname, resolve } from "node:path";
3
import { fileURLToPath } from "node:url";
4
-import { build } from "../../secure-exec/node_modules/esbuild/lib/main.js";
+import { build } from "esbuild";
5
6
const playgroundDir = resolve(fileURLToPath(new URL("..", import.meta.url)));
7
const workerSourcePath = resolve(playgroundDir, "../secure-exec/src/browser/worker.ts");
0 commit comments