@@ -10,7 +10,7 @@ module.exports = function( grunt ) {
10
10
const fs = require ( "fs" ) ;
11
11
const path = require ( "path" ) ;
12
12
const rollup = require ( "rollup" ) ;
13
- const rollupHypothetical = require ( "rollup-plugin-hypothetical " ) ;
13
+ const rollupFileOverrides = require ( "./lib/ rollup-plugin-file-overrides " ) ;
14
14
const Insight = require ( "insight" ) ;
15
15
const pkg = require ( "../../package.json" ) ;
16
16
const srcFolder = path . resolve ( `${ __dirname } /../../src` ) ;
@@ -39,10 +39,18 @@ module.exports = function( grunt ) {
39
39
outro : wrapper [ 1 ]
40
40
. replace ( / ^ \n * / , "" )
41
41
} ;
42
- const rollupHypotheticalOptions = {
43
- allowFallthrough : true ,
44
- files : { }
45
- } ;
42
+ const fileOverrides = new Map ( ) ;
43
+
44
+ function getOverride ( filePath ) {
45
+ return fileOverrides . get ( path . resolve ( filePath ) ) ;
46
+ }
47
+
48
+ function setOverride ( filePath , source ) {
49
+
50
+ // We want normalized paths in overrides as they will be matched
51
+ // against normalized paths in the file overrides Rollup plugin.
52
+ fileOverrides . set ( path . resolve ( filePath ) , source ) ;
53
+ }
46
54
47
55
grunt . registerMultiTask (
48
56
"build" ,
@@ -186,14 +194,14 @@ module.exports = function( grunt ) {
186
194
187
195
// Remove the jQuery export from the entry file, we'll use our own
188
196
// custom wrapper.
189
- rollupHypotheticalOptions . files [ inputRollupOptions . input ] = read ( inputFileName )
190
- . replace ( / \n * e x p o r t d e f a u l t j Q u e r y ; \n * / , "\n" ) ;
197
+ setOverride ( inputRollupOptions . input ,
198
+ read ( inputFileName ) . replace ( / \n * e x p o r t d e f a u l t j Q u e r y ; \n * / , "\n" ) ) ;
191
199
192
200
// Replace exports/global with a noop noConflict
193
201
if ( ( index = excluded . indexOf ( "exports/global" ) ) > - 1 ) {
194
- rollupHypotheticalOptions . files [ `${ srcFolder } /exports/global.js` ] =
202
+ setOverride ( `${ srcFolder } /exports/global.js` ,
195
203
"import jQuery from \"../core.js\";\n\n" +
196
- "jQuery.noConflict = function() {};" ;
204
+ "jQuery.noConflict = function() {};" ) ;
197
205
excluded . splice ( index , 1 ) ;
198
206
}
199
207
@@ -207,9 +215,10 @@ module.exports = function( grunt ) {
207
215
}
208
216
209
217
// Remove the comma for anonymous defines
210
- rollupHypotheticalOptions . files [ `${ srcFolder } /exports/amd.js` ] =
218
+ setOverride ( `${ srcFolder } /exports/amd.js` ,
211
219
read ( "exports/amd.js" )
212
- . replace ( / ( \s * ) " j q u e r y " ( \, \s * ) / , amdName ? "$1\"" + amdName + "\"$2" : "" ) ;
220
+ . replace ( / ( \s * ) " j q u e r y " ( \, \s * ) / ,
221
+ amdName ? "$1\"" + amdName + "\"$2" : "" ) ) ;
213
222
}
214
223
215
224
grunt . verbose . writeflags ( excluded , "Excluded" ) ;
@@ -225,7 +234,7 @@ module.exports = function( grunt ) {
225
234
226
235
// Replace excluded modules with empty sources.
227
236
for ( const module of excluded ) {
228
- rollupHypotheticalOptions . files [ `${ srcFolder } /${ module } .js` ] = "" ;
237
+ setOverride ( `${ srcFolder } /${ module } .js` , "" ) ;
229
238
}
230
239
}
231
240
@@ -234,20 +243,21 @@ module.exports = function( grunt ) {
234
243
235
244
// Remove the default inclusions, they will be overwritten with the explicitly
236
245
// included ones.
237
- rollupHypotheticalOptions . files [ inputRollupOptions . input ] = "" ;
246
+ setOverride ( inputRollupOptions . input , "" ) ;
238
247
239
248
}
240
249
241
250
// Import the explicitly included modules.
242
251
if ( included . length ) {
243
- rollupHypotheticalOptions . files [ inputRollupOptions . input ] += included
244
- . map ( module => `import "./${ module } .js";` )
245
- . join ( "\n" ) ;
252
+ setOverride ( inputRollupOptions . input ,
253
+ getOverride ( inputRollupOptions . input ) + included
254
+ . map ( module => `import "./${ module } .js";` )
255
+ . join ( "\n" ) ) ;
246
256
}
247
257
248
258
const bundle = await rollup . rollup ( {
249
259
...inputRollupOptions ,
250
- plugins : [ rollupHypothetical ( rollupHypotheticalOptions ) ]
260
+ plugins : [ rollupFileOverrides ( fileOverrides ) ]
251
261
} ) ;
252
262
253
263
const { output : [ { code } ] } = await bundle . generate ( outputRollupOptions ) ;
0 commit comments