fix: restore the production gate after the migration tasks

- rebuild editors/vscode bundles, stale since the parser escape fix
- attach the caught ParseError as `cause` in both migration validators
- drop two unused test bindings flagged by eslint

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-20 12:19:53 +05:30
co-authored by Claude Opus 5
parent 6bb3ab5fe7
commit aded2daab9
7 changed files with 17 additions and 12 deletions
@@ -9,7 +9,7 @@ import { withServerFnRequestContext } from "../src/index.ts";
// request context, not `undefined`.
test("a handler invoked through the server-function RPC path can read the request context", async () => {
let seen: unknown;
const innerHandler = async (request: Request): Promise<Response> => {
const innerHandler = async (_request: Request): Promise<Response> => {
seen = getRequestContext();
return new Response("ok");
};