Skip to content

Commit cd368f9

Browse files
authored
refactor: rename runner.destroy() to runner.close() (#18304)
1 parent 41735a7 commit cd368f9

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

docs/guide/api-environment.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -645,11 +645,11 @@ export class ModuleRunner {
645645
* Clears all caches, removes all HMR listeners, and resets source map support.
646646
* This method doesn't stop the HMR connection.
647647
*/
648-
public async destroy(): Promise<void>
648+
public async close(): Promise<void>
649649
/**
650-
* Returns `true` if the runner has been destroyed by calling `destroy()` method.
650+
* Returns `true` if the runner has been closed by calling `close()` method.
651651
*/
652-
public isDestroyed(): boolean
652+
public isClosed(): boolean
653653
}
654654
```
655655

packages/vite/src/module-runner/hmrHandler.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function handleHotPayload(
1515
payload: HotPayload,
1616
): Promise<void> {
1717
const hmrClient = runner.hmrClient
18-
if (!hmrClient || runner.isDestroyed()) return
18+
if (!hmrClient || runner.isClosed()) return
1919
switch (payload.type) {
2020
case 'connected':
2121
hmrClient.logger.debug(`connected.`)

packages/vite/src/module-runner/runner.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class ModuleRunner {
5454
Promise<EvaluatedModuleNode>
5555
>()
5656

57-
private destroyed = false
57+
private closed = false
5858

5959
constructor(
6060
public options: ModuleRunnerOptions,
@@ -100,18 +100,18 @@ export class ModuleRunner {
100100
* Clears all caches, removes all HMR listeners, and resets source map support.
101101
* This method doesn't stop the HMR connection.
102102
*/
103-
public async destroy(): Promise<void> {
103+
public async close(): Promise<void> {
104104
this.resetSourceMapSupport?.()
105105
this.clearCache()
106106
this.hmrClient = undefined
107-
this.destroyed = true
107+
this.closed = true
108108
}
109109

110110
/**
111-
* Returns `true` if the runtime has been destroyed by calling `destroy()` method.
111+
* Returns `true` if the runtime has been closed by calling `close()` method.
112112
*/
113-
public isDestroyed(): boolean {
114-
return this.destroyed
113+
public isClosed(): boolean {
114+
return this.closed
115115
}
116116

117117
private processImport(
@@ -243,8 +243,8 @@ export class ModuleRunner {
243243
importer: string | undefined,
244244
cachedModule: EvaluatedModuleNode | undefined,
245245
): Promise<EvaluatedModuleNode> {
246-
if (this.destroyed) {
247-
throw new Error(`Vite module runner has been destroyed.`)
246+
if (this.closed) {
247+
throw new Error(`Vite module runner has been closed.`)
248248
}
249249

250250
this.debug?.('[module runner] fetching', url)
@@ -373,7 +373,7 @@ export class ModuleRunner {
373373
enumerable: true,
374374
get: () => {
375375
if (!this.hmrClient) {
376-
throw new Error(`[module runner] HMR client was destroyed.`)
376+
throw new Error(`[module runner] HMR client was closed.`)
377377
}
378378
this.debug?.('[module runner] creating hmr context for', mod.url)
379379
hotContext ||= new HMRContext(this.hmrClient, mod.url)

packages/vite/src/node/server/environments/runnableEnvironment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class RunnableDevEnvironment extends DevEnvironment {
6868
override async close(): Promise<void> {
6969
await super.close()
7070
if (this._runner) {
71-
await this._runner.destroy()
71+
await this._runner.close()
7272
}
7373
}
7474
}

packages/vite/src/node/ssr/runtime/__tests__/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export async function createModuleRunnerTester(
8888
})
8989

9090
afterEach<TestClient>(async (t) => {
91-
await t.runner.destroy()
91+
await t.runner.close()
9292
await t.server.close()
9393
})
9494

0 commit comments

Comments
 (0)