(module: EnvironmentModuleNode)
| 250 | } |
| 251 | |
| 252 | async reloadModule(module: EnvironmentModuleNode): Promise<void> { |
| 253 | if (this.config.server.hmr !== false && module.file) { |
| 254 | updateModules(this, module.file, [module], monotonicDateNow()) |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | transformRequest(url: string): Promise<TransformResult | null> { |
| 259 | return transformRequest(this, url, { skipFsCheck: this._skipFsCheck }) |
nothing calls this directly
no test coverage detected