@@ -102,15 +102,6 @@ async function getOutputRollupOptions( {
102
102
} ;
103
103
}
104
104
105
- const fileOverrides = new Map ( ) ;
106
-
107
- function setOverride ( filePath , source ) {
108
-
109
- // We want normalized paths in overrides as they will be matched
110
- // against normalized paths in the file overrides Rollup plugin.
111
- fileOverrides . set ( path . resolve ( filePath ) , source ) ;
112
- }
113
-
114
105
function unique ( array ) {
115
106
return [ ...new Set ( array ) ] ;
116
107
}
@@ -179,6 +170,15 @@ async function build( {
179
170
} = { } ) {
180
171
const pureSlim = slim && ! exclude . length && ! include . length ;
181
172
173
+ const fileOverrides = new Map ( ) ;
174
+
175
+ function setOverride ( filePath , source ) {
176
+
177
+ // We want normalized paths in overrides as they will be matched
178
+ // against normalized paths in the file overrides Rollup plugin.
179
+ fileOverrides . set ( path . resolve ( filePath ) , source ) ;
180
+ }
181
+
182
182
// Add the short commit hash to the version string
183
183
// when the version is not for a release.
184
184
if ( ! version ) {
@@ -280,11 +280,6 @@ async function build( {
280
280
) ;
281
281
}
282
282
283
- const bundle = await rollup . rollup ( {
284
- ...inputOptions ,
285
- plugins : [ rollupFileOverrides ( fileOverrides ) ]
286
- } ) ;
287
-
288
283
const outputOptions = await getOutputRollupOptions ( { esm, factory } ) ;
289
284
290
285
if ( watch ) {
@@ -326,6 +321,11 @@ async function build( {
326
321
327
322
return watcher ;
328
323
} else {
324
+ const bundle = await rollup . rollup ( {
325
+ ...inputOptions ,
326
+ plugins : [ rollupFileOverrides ( fileOverrides ) ]
327
+ } ) ;
328
+
329
329
const {
330
330
output : [ { code } ]
331
331
} = await bundle . generate ( outputOptions ) ;
0 commit comments