refactor: Convert the build scripts to TypeScript and group them (#2696)

- Closes: #2695
This commit is contained in:
Dermot Duffy
2026-08-21 14:18:37 -07:00
committed by GitHub
parent 1e03e6a3d9
commit 2d7c86c93c
16 changed files with 137 additions and 93 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import { playwright } from '@vitest/browser-playwright';
import { defineConfig } from 'vitest/config';
import { getBrowsers, type Browser } from './scripts/browsers.js';
import { distCommands } from './scripts/dist-commands.js';
import { getBrowsers, type Browser } from './scripts/vitest/browsers.js';
import { distCommands } from './scripts/vitest/dist-commands.js';
// This is the only test suite that runs against the built bundle rather than
// `src/`. They need a build to already exist: run `yarn run build` first.