@@ -59,7 +59,7 @@ export function manifestPlugin(): Plugin {
59
59
function getChunkName ( chunk : OutputChunk ) {
60
60
return (
61
61
getChunkOriginalFileName ( chunk , root , format ) ??
62
- `_` + path . basename ( chunk . fileName )
62
+ `_${ path . basename ( chunk . fileName ) } `
63
63
)
64
64
}
65
65
@@ -142,8 +142,6 @@ export function manifestPlugin(): Plugin {
142
142
}
143
143
}
144
144
145
- const fileNameToAsset = new Map < string , ManifestChunk > ( )
146
-
147
145
for ( const file in bundle ) {
148
146
const chunk = bundle [ file ]
149
147
if ( chunk . type === 'chunk' ) {
@@ -153,7 +151,7 @@ export function manifestPlugin(): Plugin {
153
151
const src =
154
152
chunk . originalFileNames . length > 0
155
153
? chunk . originalFileNames [ 0 ]
156
- : '_' + path . basename ( chunk . fileName )
154
+ : `_ ${ path . basename ( chunk . fileName ) } `
157
155
const isEntry = entryCssAssetFileNames . has ( chunk . fileName )
158
156
const asset = createAsset ( chunk , src , isEntry )
159
157
@@ -162,7 +160,6 @@ export function manifestPlugin(): Plugin {
162
160
const file = manifest [ src ] ?. file
163
161
if ( ! ( file && endsWithJSRE . test ( file ) ) ) {
164
162
manifest [ src ] = asset
165
- fileNameToAsset . set ( chunk . fileName , asset )
166
163
}
167
164
168
165
for ( const originalFileName of chunk . originalFileNames . slice ( 1 ) ) {
@@ -201,7 +198,7 @@ export function getChunkOriginalFileName(
201
198
if ( format === 'system' && ! chunk . name . includes ( '-legacy' ) ) {
202
199
const ext = path . extname ( name )
203
200
const endPos = ext . length !== 0 ? - ext . length : undefined
204
- name = name . slice ( 0 , endPos ) + ` -legacy` + ext
201
+ name = ` ${ name . slice ( 0 , endPos ) } -legacy${ ext } `
205
202
}
206
203
return name . replace ( / \0 / g, '' )
207
204
}
0 commit comments