Skip to content

Commit a65903e

Browse files
ci: apply automated fixes
1 parent c5dd742 commit a65903e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/start-plugin-core/src/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import * as vite from 'vite'
77
export const isRolldown = 'rolldownVersion' in vite
88

99
/** Returns `'rolldownOptions'` when using Rolldown, `'rollupOptions'` otherwise. */
10-
export const bundlerOptionsKey = (
11-
isRolldown ? 'rolldownOptions' : 'rollupOptions'
12-
)
10+
export const bundlerOptionsKey = isRolldown
11+
? 'rolldownOptions'
12+
: 'rollupOptions'
1313

1414
/** Read `build.rollupOptions` or `build.rolldownOptions` from a build config. */
1515
export function getBundlerOptions(build: any): any {

0 commit comments

Comments
 (0)