mirror of
https://github.com/wassname/CanvasTextWrapper.git
synced 2026-07-02 07:18:08 +08:00
150 lines
4.3 KiB
JavaScript
150 lines
4.3 KiB
JavaScript
/*
|
|
* grunt-contrib-uglify
|
|
* http://gruntjs.com/
|
|
*
|
|
* Copyright (c) 2013 "Cowboy" Ben Alman, contributors
|
|
* Licensed under the MIT license.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function(grunt) {
|
|
|
|
// Internal lib.
|
|
var contrib = require('grunt-lib-contrib').init(grunt);
|
|
var uglify = require('./lib/uglify').init(grunt);
|
|
|
|
grunt.registerMultiTask('uglify', 'Minify files with UglifyJS.', function() {
|
|
// Merge task-specific and/or target-specific options with these defaults.
|
|
var options = this.options({
|
|
banner: '',
|
|
footer: '',
|
|
compress: {
|
|
warnings: false
|
|
},
|
|
mangle: {},
|
|
beautify: false,
|
|
report: false
|
|
});
|
|
|
|
// Process banner.
|
|
var banner = grunt.template.process(options.banner);
|
|
var footer = grunt.template.process(options.footer);
|
|
var mapNameGenerator, mapInNameGenerator, mappingURLGenerator;
|
|
|
|
// Iterate over all src-dest file pairs.
|
|
this.files.forEach(function(f) {
|
|
var src = f.src.filter(function(filepath) {
|
|
// Warn on and remove invalid source files (if nonull was set).
|
|
if (!grunt.file.exists(filepath)) {
|
|
grunt.log.warn('Source file "' + filepath + '" not found.');
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
if (src.length === 0) {
|
|
grunt.log.warn('Destination (' + f.dest + ') not written because src files were empty.');
|
|
return;
|
|
}
|
|
|
|
// function to get the name of the sourceMap
|
|
if (typeof options.sourceMap === "function") {
|
|
mapNameGenerator = options.sourceMap;
|
|
}
|
|
|
|
// function to get the name of the sourceMap
|
|
if (typeof options.sourceMapIn === "function") {
|
|
if (src.length !== 1) {
|
|
grunt.fail.warn('Cannot generate `sourceMapIn` for multiple source files.');
|
|
}
|
|
mapInNameGenerator = options.sourceMapIn;
|
|
}
|
|
|
|
// function to get the sourceMappingURL
|
|
if (typeof options.sourceMappingURL === "function") {
|
|
mappingURLGenerator = options.sourceMappingURL;
|
|
}
|
|
|
|
// dynamically create destination sourcemap name
|
|
if (mapNameGenerator) {
|
|
try {
|
|
options.sourceMap = mapNameGenerator(f.dest);
|
|
} catch (e) {
|
|
var err = new Error('SourceMapName failed.');
|
|
err.origError = e;
|
|
grunt.fail.warn(err);
|
|
}
|
|
}
|
|
|
|
// dynamically create incoming sourcemap names
|
|
if (mapInNameGenerator) {
|
|
try {
|
|
options.sourceMapIn = mapInNameGenerator(src[0]);
|
|
} catch (e) {
|
|
var err = new Error('SourceMapInName failed.');
|
|
err.origError = e;
|
|
grunt.fail.warn(err);
|
|
}
|
|
}
|
|
|
|
// dynamically create sourceMappingURL
|
|
if (mappingURLGenerator) {
|
|
try {
|
|
options.sourceMappingURL = mappingURLGenerator(f.dest);
|
|
} catch (e) {
|
|
var err = new Error('SourceMappingURL failed.');
|
|
err.origError = e;
|
|
grunt.fail.warn(err);
|
|
}
|
|
}
|
|
|
|
// Minify files, warn and fail on error.
|
|
var result;
|
|
try {
|
|
result = uglify.minify(src, f.dest, options);
|
|
} catch (e) {
|
|
console.log(e);
|
|
var err = new Error('Uglification failed.');
|
|
if (e.message) {
|
|
err.message += '\n' + e.message + '. \n';
|
|
if (e.line) {
|
|
err.message += 'Line ' + e.line + ' in ' + src + '\n';
|
|
}
|
|
}
|
|
err.origError = e;
|
|
grunt.log.warn('Uglifying source "' + src + '" failed.');
|
|
grunt.fail.warn(err);
|
|
}
|
|
|
|
// Concat minified source + footer
|
|
var output = result.min + footer;
|
|
|
|
// Only prepend banner if uglify hasn't taken care of it as part of the preamble
|
|
if (!options.sourceMap) {
|
|
output = banner + output;
|
|
}
|
|
|
|
// Write the destination file.
|
|
grunt.file.write(f.dest, output);
|
|
|
|
|
|
// Write source map
|
|
if (options.sourceMap) {
|
|
grunt.file.write(options.sourceMap, result.sourceMap);
|
|
grunt.log.writeln('Source Map "' + options.sourceMap + '" created.');
|
|
}
|
|
|
|
// Print a success message.
|
|
grunt.log.writeln('File "' + f.dest + '" created.');
|
|
|
|
// ...and report some size information.
|
|
if (options.report) {
|
|
contrib.minMaxInfo(output, result.max, options.report);
|
|
}
|
|
});
|
|
});
|
|
|
|
};
|