(chunk: RenderedChunk | OutputChunk | OutputAsset)
| 1259 | |
| 1260 | // reset chunk metadata on the first RenderChunk call for watch mode |
| 1261 | reset(chunk: RenderedChunk | OutputChunk | OutputAsset): void { |
| 1262 | const key = this._getKey(chunk) |
| 1263 | if (this._resetChunks.has(key)) return |
| 1264 | |
| 1265 | this._resetChunks.add(key) |
| 1266 | this._inner.set(key, this._getDefaultValue(chunk)) |
| 1267 | } |
| 1268 | |
| 1269 | clearResetChunks(): void { |
| 1270 | this._resetChunks.clear() |
no test coverage detected