Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@biomejs/biome": "2.4.12",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.3",
"tsx": "^4.21.0",
"tsx": "^4.21.1",
"turbo": "^2.9.6",
"ultracite": "^7.6.0",
"vitest": "^4.1.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/cea/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"@ai-sdk/provider-utils": "^4.0.23",
"@biomejs/biome": "2.4.12",
"@types/node": "^25.9.3",
"tsx": "^4.21.0",
"tsx": "^4.21.1",
"typescript": "^6.0.3",
"ultracite": "^7.6.0"
},
Expand Down
7 changes: 5 additions & 2 deletions packages/harness/src/runtime/runtime-edge-imports.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ describe("runtime edge import graph", () => {
expect(offenders).toEqual([]);
});

it("imports the runtime through browser conditions without process globals", () => {
it("runs the runtime under browser conditions without process globals", () => {
// tsx 4.21+ resolves tsconfig via process during the import hook, so the
// module graph must load with process present. Runtime APIs must still work
// after process is removed (edge / browser-condition smoke).
const output = execFileSync(
process.execPath,
[
Expand All @@ -83,8 +86,8 @@ describe("runtime edge import graph", () => {
"--eval",
`
const originalProcess = globalThis.process;
Reflect.deleteProperty(globalThis, "process");
const mod = await import("@ai-sdk-tool/harness/runtime");
Reflect.deleteProperty(globalThis, "process");
const runtime = await mod.createAgentRuntime({
name: "edge-smoke",
cwd: "/",
Expand Down
2 changes: 1 addition & 1 deletion packages/tgbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"devDependencies": {
"@types/node": "^25.9.3",
"tsx": "^4.21.0",
"tsx": "^4.21.1",
"typescript": "^6.0.3"
},
"engines": {
Expand Down
49 changes: 18 additions & 31 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.