Skip to content

Commit 5212d09

Browse files
authored
fix: destroy the runner when runnable environment is closed (#18282)
1 parent fb35a78 commit 5212d09

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

+7
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ class RunnableDevEnvironment extends DevEnvironment {
6464
this._runner = factory(this, this._runnerOptions)
6565
return this._runner
6666
}
67+
68+
override async close(): Promise<void> {
69+
await super.close()
70+
if (this._runner) {
71+
await this._runner.destroy()
72+
}
73+
}
6774
}
6875

6976
export type { RunnableDevEnvironment }

0 commit comments

Comments
 (0)