@@ -7,7 +7,6 @@ import type {
7
7
NormalizedOutputOptions ,
8
8
RenderedChunk
9
9
} from '../rollup/types' ;
10
- import type { PluginDriver } from './PluginDriver' ;
11
10
import { collapseSourcemaps } from './collapseSourcemaps' ;
12
11
import type { GetHash } from './crypto' ;
13
12
import { hasherByType } from './crypto' ;
@@ -21,6 +20,7 @@ import { error, logFailedValidation } from './logs';
21
20
import type { OutputBundleWithPlaceholders } from './outputBundle' ;
22
21
import { FILE_PLACEHOLDER , lowercaseBundleKeys } from './outputBundle' ;
23
22
import { basename , normalize , resolve } from './path' ;
23
+ import type { PluginDriver } from './PluginDriver' ;
24
24
import { SOURCEMAPPING_URL } from './sourceMappingURL' ;
25
25
import { timeEnd , timeStart } from './timers' ;
26
26
@@ -55,11 +55,10 @@ export async function renderChunks(
55
55
const getHash = hasherByType [ outputOptions . hashCharacters ] ;
56
56
const chunkGraph = getChunkGraph ( chunks ) ;
57
57
const {
58
- hashDependenciesByPlaceholder,
59
58
initialHashesByPlaceholder,
60
59
nonHashedChunksWithPlaceholders,
61
- placeholders ,
62
- renderedChunksByPlaceholder
60
+ renderedChunksByPlaceholder ,
61
+ hashDependenciesByPlaceholder
63
62
} = await transformChunksAndGenerateContentHashes (
64
63
renderedChunks ,
65
64
chunkGraph ,
@@ -72,7 +71,6 @@ export async function renderChunks(
72
71
renderedChunksByPlaceholder ,
73
72
hashDependenciesByPlaceholder ,
74
73
initialHashesByPlaceholder ,
75
- placeholders ,
76
74
bundle ,
77
75
getHash
78
76
) ;
@@ -285,7 +283,6 @@ async function transformChunksAndGenerateContentHashes(
285
283
hashDependenciesByPlaceholder,
286
284
initialHashesByPlaceholder,
287
285
nonHashedChunksWithPlaceholders,
288
- placeholders,
289
286
renderedChunksByPlaceholder
290
287
} ;
291
288
}
@@ -294,13 +291,11 @@ function generateFinalHashes(
294
291
renderedChunksByPlaceholder : Map < string , RenderedChunkWithPlaceholders > ,
295
292
hashDependenciesByPlaceholder : Map < string , HashResult > ,
296
293
initialHashesByPlaceholder : Map < string , string > ,
297
- placeholders : Set < string > ,
298
294
bundle : OutputBundleWithPlaceholders ,
299
295
getHash : GetHash
300
296
) {
301
297
const hashesByPlaceholder = new Map < string , string > ( initialHashesByPlaceholder ) ;
302
- for ( const placeholder of placeholders ) {
303
- const { fileName } = renderedChunksByPlaceholder . get ( placeholder ) ! ;
298
+ for ( const [ placeholder , { fileName } ] of renderedChunksByPlaceholder ) {
304
299
let contentToHash = '' ;
305
300
const hashDependencyPlaceholders = new Set < string > ( [ placeholder ] ) ;
306
301
for ( const dependencyPlaceholder of hashDependencyPlaceholders ) {
0 commit comments