File tree 1 file changed +3
-3
lines changed
packages/vite/src/node/optimizer
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -505,7 +505,7 @@ export function runOptimizeDeps(
505
505
}
506
506
}
507
507
508
- const succesfulResult : DepOptimizationResult = {
508
+ const successfulResult : DepOptimizationResult = {
509
509
metadata,
510
510
cancel : cleanUp ,
511
511
commit : async ( ) => {
@@ -556,7 +556,7 @@ export function runOptimizeDeps(
556
556
// skip the scanner step if the lockfile hasn't changed
557
557
return {
558
558
cancel : async ( ) => cleanUp ( ) ,
559
- result : Promise . resolve ( succesfulResult ) ,
559
+ result : Promise . resolve ( successfulResult ) ,
560
560
}
561
561
}
562
562
@@ -654,7 +654,7 @@ export function runOptimizeDeps(
654
654
`Dependencies bundled in ${ ( performance . now ( ) - start ) . toFixed ( 2 ) } ms` ,
655
655
)
656
656
657
- return succesfulResult
657
+ return successfulResult
658
658
} )
659
659
660
660
. catch ( ( e ) => {
You can’t perform that action at this time.
0 commit comments