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 --- .../vitest/dist/chunks/creator.DAmOKTvJ.js | 673 --------------------- 1 file changed, 673 deletions(-) delete mode 100644 vanilla/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js (limited to 'vanilla/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js') diff --git a/vanilla/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js b/vanilla/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js deleted file mode 100644 index 1d47182..0000000 --- a/vanilla/node_modules/vitest/dist/chunks/creator.DAmOKTvJ.js +++ /dev/null @@ -1,673 +0,0 @@ -import { existsSync, writeFileSync, readFileSync } from 'node:fs'; -import { mkdir, writeFile } from 'node:fs/promises'; -import { resolve, dirname, relative } from 'node:path'; -import { detectPackageManager, installPackage } from './index.D3XRDfWc.js'; -import { p as prompt, a as any } from './index.D4KonVSU.js'; -import { x } from 'tinyexec'; -import c from 'tinyrainbow'; -import { c as configFiles } from './constants.D_Q9UYh-.js'; -import 'node:process'; -import 'node:module'; -import 'node:url'; -import './_commonjsHelpers.D26ty3Ew.js'; -import 'readline'; -import 'events'; - -const jsxExample = { - name: "HelloWorld.jsx", - js: ` -export default function HelloWorld({ name }) { - return ( -
-

Hello {name}!

-
- ) -} -`, - ts: ` -export default function HelloWorld({ name }: { name: string }) { - return ( -
-

Hello {name}!

-
- ) -} -`, - test: ` -import { expect, test } from 'vitest' -import { render } from '@testing-library/jsx' -import HelloWorld from './HelloWorld.x' - -test('renders name', async () => { - const { getByText } = await render() - await expect.element(getByText('Hello Vitest!')).toBeInTheDocument() -}) -` -}; -const vueExample = { - name: "HelloWorld.vue", - js: ` -