Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed May 23, 2024
1 parent b96fae5 commit ca9d5e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vite/src/node/server/pluginContainer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ class PluginContainer {
const skip = options?.skip
const ssr = options?.ssr
const scan = !!options?.scan
const ctx = new ResolvedIdContext(this, !!ssr, skip, scan)
const ctx = new ResolveIdContext(this, !!ssr, skip, scan)

const resolveStart = debugResolve ? performance.now() : 0
let id: string | null = null
Expand Down Expand Up @@ -764,7 +764,7 @@ class PluginContext implements Omit<RollupPluginContext, 'cache'> {
}
}

class ResolvedIdContext extends PluginContext {
class ResolveIdContext extends PluginContext {
constructor(
container: PluginContainer,
ssr: boolean,
Expand Down

0 comments on commit ca9d5e9

Please sign in to comment.