Skip to content

Commit f54e8da

Browse files
authoredJul 17, 2023
chore: fix typos (#13862)
1 parent 45c6f3b commit f54e8da

File tree

1 file changed

+3
-3
lines changed
  • packages/vite/src/node/optimizer

1 file changed

+3
-3
lines changed
 

‎packages/vite/src/node/optimizer/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ export function runOptimizeDeps(
505505
}
506506
}
507507

508-
const succesfulResult: DepOptimizationResult = {
508+
const successfulResult: DepOptimizationResult = {
509509
metadata,
510510
cancel: cleanUp,
511511
commit: async () => {
@@ -556,7 +556,7 @@ export function runOptimizeDeps(
556556
// skip the scanner step if the lockfile hasn't changed
557557
return {
558558
cancel: async () => cleanUp(),
559-
result: Promise.resolve(succesfulResult),
559+
result: Promise.resolve(successfulResult),
560560
}
561561
}
562562

@@ -654,7 +654,7 @@ export function runOptimizeDeps(
654654
`Dependencies bundled in ${(performance.now() - start).toFixed(2)}ms`,
655655
)
656656

657-
return succesfulResult
657+
return successfulResult
658658
})
659659

660660
.catch((e) => {

0 commit comments

Comments
 (0)
Please sign in to comment.