File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ async function doBuild(
407
407
try {
408
408
const pkgName = libOptions && getPkgName ( config . root )
409
409
410
- const buildOuputOptions = ( output : OutputOptions = { } ) : OutputOptions => {
410
+ const buildOutputOptions = ( output : OutputOptions = { } ) : OutputOptions => {
411
411
return {
412
412
dir : outDir ,
413
413
format : ssr ? 'cjs' : 'es' ,
@@ -454,10 +454,10 @@ async function doBuild(
454
454
const output : OutputOptions [ ] = [ ]
455
455
if ( Array . isArray ( outputs ) ) {
456
456
for ( const resolvedOutput of outputs ) {
457
- output . push ( buildOuputOptions ( resolvedOutput ) )
457
+ output . push ( buildOutputOptions ( resolvedOutput ) )
458
458
}
459
459
} else {
460
- output . push ( buildOuputOptions ( outputs ) )
460
+ output . push ( buildOutputOptions ( outputs ) )
461
461
}
462
462
463
463
const watcherOptions = config . build . watch
@@ -505,7 +505,7 @@ async function doBuild(
505
505
506
506
const generate = ( output : OutputOptions = { } ) => {
507
507
return bundle [ options . write ? 'write' : 'generate' ] (
508
- buildOuputOptions ( output )
508
+ buildOutputOptions ( output )
509
509
)
510
510
}
511
511
You can’t perform that action at this time.
0 commit comments