From afa87af01c79a9baa539f2992d32154d2a4739bd Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 14:46:37 -0800 Subject: task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq --- vanilla/node_modules/vitest/dist/worker.d.ts | 32 ---------------------------- 1 file changed, 32 deletions(-) delete mode 100644 vanilla/node_modules/vitest/dist/worker.d.ts (limited to 'vanilla/node_modules/vitest/dist/worker.d.ts') diff --git a/vanilla/node_modules/vitest/dist/worker.d.ts b/vanilla/node_modules/vitest/dist/worker.d.ts deleted file mode 100644 index 03ceeb0..0000000 --- a/vanilla/node_modules/vitest/dist/worker.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { W as WorkerGlobalState, a as WorkerSetupContext, B as BirpcOptions } from './chunks/worker.d.Dyxm8DEL.js'; -import { T as Traces } from './chunks/traces.d.402V_yFI.js'; -import { Awaitable } from '@vitest/utils'; -import { ModuleRunner } from 'vite/module-runner'; -import { R as RuntimeRPC } from './chunks/rpc.d.RH3apGEf.js'; -import '@vitest/runner'; -import './chunks/config.d.Cy95HiCx.js'; -import '@vitest/pretty-format'; -import '@vitest/snapshot'; -import '@vitest/utils/diff'; -import './chunks/environment.d.CrsxCzP1.js'; - -/** @experimental */ -declare function setupEnvironment(context: WorkerSetupContext): Promise<() => Promise>; -/** @experimental */ -declare function runBaseTests(method: "run" | "collect", state: WorkerGlobalState, traces: Traces): Promise; - -type WorkerRpcOptions = Pick, "on" | "off" | "post" | "serialize" | "deserialize">; -interface VitestWorker extends WorkerRpcOptions { - runTests: (state: WorkerGlobalState, traces: Traces) => Awaitable; - collectTests: (state: WorkerGlobalState, traces: Traces) => Awaitable; - onModuleRunner?: (moduleRunner: ModuleRunner) => Awaitable; - setup?: (context: WorkerSetupContext) => Promise<() => Promise>; -} - -interface Options extends VitestWorker { - teardown?: () => void; -} -/** @experimental */ -declare function init(worker: Options): void; - -export { init, runBaseTests, setupEnvironment }; -- cgit v1.2.3