aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/minify.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/tasks/minify.js')
-rw-r--r--build/tasks/minify.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/tasks/minify.js b/build/tasks/minify.js
index c5e0ff25f..48cd3cdae 100644
--- a/build/tasks/minify.js
+++ b/build/tasks/minify.js
@@ -24,7 +24,7 @@ module.exports = async function minify( { filename, dir, esm } ) {
ecma: esm ? 2015 : 5,
asciiOnly: true,
comments: false,
- preamble: `/*! jQuery ${version}` +
+ preamble: `/*! jQuery ${ version }` +
" | (c) OpenJS Foundation and other contributors" +
" | jquery.org/license */\n"
},
@@ -63,5 +63,7 @@ module.exports = async function minify( { filename, dir, esm } ) {
processForDist( code, minFilename );
processForDist( map, mapFilename );
- console.log( `[${getTimestamp()}] ${minFilename} ${version} with ${mapFilename} created.` );
+ console.log( `[${ getTimestamp() }] ${ minFilename } ${ version } with ${
+ mapFilename
+ } created.` );
};