Files
cloudflare__vinext/examples/benchmarks/migrations/0002_remove_rolldown_runner.sql
Steve Faulkner a62e5c4901 chore(benchmarks): remove Vite 7 runner, update Next.js to 16.2.1 (#699)
* chore(benchmarks): remove Vite 7 runner, update Next.js to 16.2.1

The vinext-rolldown benchmark runner was identical to the vinext runner
(both resolved to the same Vite version via catalog), producing
duplicate results on the dashboard. Remove it entirely and simplify
to a two-runner comparison: Next.js (Turbopack) vs vinext (Vite 8).

Also bump the Next.js benchmark dependency from 16.1.7 to 16.2.1 to
pick up recent performance improvements.

* fix: remove vinext-rolldown from pnpm-workspace.yaml, fix migration comment
2026-03-27 19:23:50 -05:00

6 lines
320 B
SQL

-- Remove vinext_rolldown benchmark data.
-- The Vite 7 / Rollup runner was identical to the Vite 8 / Rolldown runner
-- (both resolved to the same Vite version), so the data was duplicated.
-- Going forward only 'nextjs' and 'vinext' runners are tracked.
DELETE FROM benchmark_results WHERE runner = 'vinext_rolldown';