This commit is contained in:
Asraelite 2016-03-27 23:46:18 +01:00
parent 27520842e3
commit 2d177c6b27
16 changed files with 228 additions and 31 deletions

View file

@ -26,12 +26,13 @@ function minifyJs(callback) {
}
scripts.sort((a, b) => getPriority(b) - getPriority(a));
scripts = scripts.map(s => s.replace(/(\/\/@\d+\n)/, ''));
let comment = '';
cache = scripts.join('');
// Remove to re-enable minifying.
//Remove to re-enable minifying.
callback(cache); return;
try {