Skip to content

Commit a4ebeab

Browse files
committed
fix: make tool names more concise
1 parent 9049135 commit a4ebeab

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

benchmark.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ toolNames.forEach((name) => {
249249
case 'vite':
250250
buildTools.push(
251251
new BuildTool({
252-
name: 'Vite (SWC) ' + require('vite/package.json').version,
252+
name: 'Vite (Rollup + SWC) ' + require('vite/package.json').version,
253253
port: 5173,
254254
startScript: 'start:vite',
255255
startedRegex: /ready in (\d+) (s|ms)/,
@@ -262,7 +262,8 @@ toolNames.forEach((name) => {
262262
buildTools.push(
263263
new BuildTool({
264264
name:
265-
'Vite (Rolldown) ' + require('rolldown-vite/package.json').version,
265+
'Vite (Rolldown + Oxc) ' +
266+
require('rolldown-vite/package.json').version,
266267
port: 5173,
267268
startScript: 'start:rolldown-vite',
268269
startedRegex: /ready in (\d+) (s|ms)/,

0 commit comments

Comments
 (0)