diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
| commit | afa87af01c79a9baa539f2992d32154d2a4739bd (patch) | |
| tree | 92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts | |
| parent | 3b927e84d200402281f68181cd4253bc77e5528d (diff) | |
| download | neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2 neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip | |
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
Diffstat (limited to 'vanilla/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts')
| -rw-r--r-- | vanilla/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/vanilla/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts b/vanilla/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts deleted file mode 100644 index ee0dbc5..0000000 --- a/vanilla/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { CancelReason, File, TestArtifact, TaskResultPack, TaskEventPack } from '@vitest/runner'; -import { SnapshotResult } from '@vitest/snapshot'; -import { FetchFunctionOptions, FetchResult } from 'vite/module-runner'; -import { O as OTELCarrier } from './traces.d.402V_yFI.js'; - -interface AfterSuiteRunMeta { - coverage?: unknown; - testFiles: string[]; - environment: string; - projectName?: string; -} -interface UserConsoleLog { - content: string; - origin?: string; - browser?: boolean; - type: "stdout" | "stderr"; - taskId?: string; - time: number; - size: number; -} -interface ModuleGraphData { - graph: Record<string, string[]>; - externalized: string[]; - inlined: string[]; -} -interface ProvidedContext {} -interface ResolveFunctionResult { - id: string; - file: string; - url: string; -} -interface FetchCachedFileSystemResult { - cached: true; - tmp: string; - id: string; - file: string | null; - url: string; - invalidate: boolean; -} -type LabelColor = "black" | "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white"; - -interface RuntimeRPC { - fetch: (id: string, importer: string | undefined, environment: string, options?: FetchFunctionOptions, otelCarrier?: OTELCarrier) => Promise<FetchResult | FetchCachedFileSystemResult>; - resolve: (id: string, importer: string | undefined, environment: string) => Promise<ResolveFunctionResult | null>; - transform: (id: string) => Promise<{ - code?: string; - }>; - onUserConsoleLog: (log: UserConsoleLog) => void; - onUnhandledError: (err: unknown, type: string) => void; - onQueued: (file: File) => void; - onCollected: (files: File[]) => Promise<void>; - onAfterSuiteRun: (meta: AfterSuiteRunMeta) => void; - onTaskArtifactRecord: <Artifact extends TestArtifact>(testId: string, artifact: Artifact) => Promise<Artifact>; - onTaskUpdate: (pack: TaskResultPack[], events: TaskEventPack[]) => Promise<void>; - onCancel: (reason: CancelReason) => void; - getCountOfFailedTests: () => number; - snapshotSaved: (snapshot: SnapshotResult) => void; - resolveSnapshotPath: (testPath: string) => string; -} -interface RunnerRPC { - onCancel: (reason: CancelReason) => void; -} - -export type { AfterSuiteRunMeta as A, LabelColor as L, ModuleGraphData as M, ProvidedContext as P, RuntimeRPC as R, UserConsoleLog as U, RunnerRPC as a }; |
