@@ -45,7 +45,7 @@ async function read( filename ) {
45
45
// and ensure unix-style path separators
46
46
function moduleName ( filename ) {
47
47
return filename
48
- . replace ( `${ srcFolder } ${ path . sep } ` , "" )
48
+ . replace ( `${ srcFolder } ${ path . sep } ` , "" )
49
49
. replace ( / \. j s $ / , "" )
50
50
. split ( path . sep )
51
51
. join ( path . posix . sep ) ;
@@ -112,7 +112,7 @@ async function checkExclude( exclude, include ) {
112
112
113
113
for ( const module of exclude ) {
114
114
if ( minimum . indexOf ( module ) !== - 1 ) {
115
- throw new Error ( `Module \"${ module } \" is a minimum requirement.` ) ;
115
+ throw new Error ( `Module \"${ module } \" is a minimum requirement.` ) ;
116
116
}
117
117
118
118
// Exclude all files in the dir of the same name
@@ -152,7 +152,7 @@ async function writeCompiled( { code, dir, filename, version } ) {
152
152
. replace ( / @ D A T E / g, new Date ( ) . toISOString ( ) . replace ( / : \d + \. \d + Z $ / , "Z" ) ) ;
153
153
154
154
await fs . promises . writeFile ( path . join ( dir , filename ) , compiledContents ) ;
155
- console . log ( `[${ getTimestamp ( ) } ] ${ filename } v${ version } created.` ) ;
155
+ console . log ( `[${ getTimestamp ( ) } ] ${ filename } v${ version } created.` ) ;
156
156
}
157
157
158
158
// Build jQuery ECMAScript modules
@@ -187,7 +187,9 @@ async function build( {
187
187
188
188
// "+[slim.]SHA" is semantically correct
189
189
// Add ".dirty" as well if the working dir is not clean
190
- version = `${ pkg . version } +${ slim ? "slim." : "" } ${ stdout . trim ( ) } ${ isClean ? "" : ".dirty" } ` ;
190
+ version = `${ pkg . version } +${ slim ? "slim." : "" } ${ stdout . trim ( ) } ${
191
+ isClean ? "" : ".dirty"
192
+ } `;
191
193
} else if ( slim ) {
192
194
version += "+slim" ;
193
195
}
@@ -204,7 +206,7 @@ async function build( {
204
206
if ( excluded . includes ( "exports/global" ) ) {
205
207
const index = excluded . indexOf ( "exports/global" ) ;
206
208
setOverride (
207
- `${ srcFolder } /exports/global.js` ,
209
+ `${ srcFolder } /exports/global.js` ,
208
210
"import { jQuery } from \"../core.js\";\n\n" +
209
211
"jQuery.noConflict = function() {};"
210
212
) ;
@@ -223,12 +225,12 @@ async function build( {
223
225
// No name means an anonymous define
224
226
const amdExportContents = await read ( "exports/amd.js" ) ;
225
227
setOverride (
226
- `${ srcFolder } /exports/amd.js` ,
228
+ `${ srcFolder } /exports/amd.js` ,
227
229
amdExportContents . replace (
228
230
229
231
// Remove the comma for anonymous defines
230
232
/ ( \s * ) " j q u e r y " ( , \s * ) / ,
231
- amd ? `$1\"${ amd } \"$2` : " "
233
+ amd ? `$1\"${ amd } \"$2` : " "
232
234
)
233
235
) ;
234
236
}
@@ -246,11 +248,11 @@ async function build( {
246
248
}
247
249
248
250
const inputOptions = {
249
- input : `${ srcFolder } /jquery.js`
251
+ input : `${ srcFolder } /jquery.js`
250
252
} ;
251
253
252
254
const includedImports = included
253
- . map ( ( module ) => `import "./${ module } .js";` )
255
+ . map ( ( module ) => `import "./${ module } .js";` )
254
256
. join ( "\n" ) ;
255
257
256
258
const jQueryFileContents = await read ( "jquery.js" ) ;
@@ -272,7 +274,7 @@ async function build( {
272
274
// Replace excluded modules with empty sources.
273
275
for ( const module of excluded ) {
274
276
setOverride (
275
- `${ srcFolder } /${ module } .js` ,
277
+ `${ srcFolder } /${ module } .js` ,
276
278
277
279
// The `selector` module is not removed, but replaced
278
280
// with `selector-native`.
@@ -288,7 +290,7 @@ async function build( {
288
290
output : [ outputOptions ] ,
289
291
plugins : [ rollupFileOverrides ( fileOverrides ) ] ,
290
292
watch : {
291
- include : `${ srcFolder } /**` ,
293
+ include : `${ srcFolder } /**` ,
292
294
skipWrite : true
293
295
}
294
296
} ) ;
0 commit comments