| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764 |
- /**
- * UglifyCSS
- * Port of YUI CSS Compressor to NodeJS
- * Author: Franck Marcia - https://github.com/fmarcia
- * MIT licenced
- */
- /**
- * cssmin.js
- * Author: Stoyan Stefanov - http://phpied.com/
- * This is a JavaScript port of the CSS minification tool
- * distributed with YUICompressor, itself a port
- * of the cssmin utility by Isaac Schlueter - http://foohack.com/
- * Permission is hereby granted to use the JavaScript version under the same
- * conditions as the YUICompressor (original YUICompressor note below).
- */
- /**
- * YUI Compressor
- * http://developer.yahoo.com/yui/compressor/
- * Author: Julien Lecomte - http://www.julienlecomte.net/
- * Copyright (c) 2011 Yahoo! Inc. All rights reserved.
- * The copyrights embodied in the content of this file are licensed
- * by Yahoo! Inc. under the BSD (revised) open source license.
- */
- // derived from https://github.com/fmarcia/UglifyCSS
- this.cssMinifier = this.cssMinifier || (() => {
- /**
- * @type {string} - placeholder prefix
- */
- const ___PRESERVED_TOKEN_ = "___PRESERVED_TOKEN_";
- /**
- * @typedef {object} options - UglifyCSS options
- * @property {number} [maxLineLen=0] - Maximum line length of uglified CSS
- * @property {boolean} [expandVars=false] - Expand variables
- * @property {boolean} [uglyComments=false] - Removes newlines within preserved comments
- * @property {boolean} [cuteComments=false] - Preserves newlines within and around preserved comments
- * @property {boolean} [debug=false] - Prints full error stack on error
- * @property {string} [output=''] - Output file name
- */
- /**
- * @type {options} - UglifyCSS options
- */
- const defaultOptions = {
- maxLineLen: 0,
- expandVars: false,
- uglyComments: false,
- cuteComments: false,
- debug: false,
- output: ""
- };
- const REGEXP_DATA_URI = /url\(\s*(["']?)data:/g;
- const REGEXP_WHITE_SPACES = /\s+/g;
- const REGEXP_NEW_LINE = /\n/g;
- /**
- * extractDataUrls replaces all data urls with tokens before we start
- * compressing, to avoid performance issues running some of the subsequent
- * regexes against large strings chunks.
- *
- * @param {string} css - CSS content
- * @param {string[]} preservedTokens - Global array of tokens to preserve
- *
- * @return {string} Processed CSS
- */
- function extractDataUrls(css, preservedTokens) {
- // Leave data urls alone to increase parse performance.
- const pattern = REGEXP_DATA_URI;
- const maxIndex = css.length - 1;
- const sb = [];
- let appendIndex = 0, match;
- // Since we need to account for non-base64 data urls, we need to handle
- // ' and ) being part of the data string. Hence switching to indexOf,
- // to determine whether or not we have matching string terminators and
- // handling sb appends directly, instead of using matcher.append* methods.
- while ((match = pattern.exec(css)) !== null) {
- const startIndex = match.index + 4; // 'url('.length()
- let terminator = match[1]; // ', " or empty (not quoted)
- if (terminator.length === 0) {
- terminator = ")";
- }
- let foundTerminator = false, endIndex = pattern.lastIndex - 1;
- while (foundTerminator === false && endIndex + 1 <= maxIndex) {
- endIndex = css.indexOf(terminator, endIndex + 1);
- // endIndex == 0 doesn't really apply here
- if ((endIndex > 0) && (css.charAt(endIndex - 1) !== "\\")) {
- foundTerminator = true;
- if (")" != terminator) {
- endIndex = css.indexOf(")", endIndex);
- }
- }
- }
- // Enough searching, start moving stuff over to the buffer
- sb.push(css.substring(appendIndex, match.index));
- if (foundTerminator) {
- let token = css.substring(startIndex, endIndex);
- const parts = token.split(",");
- if (parts.length > 1 && parts[0].slice(-7) == ";base64") {
- token = token.replace(REGEXP_WHITE_SPACES, "");
- } else {
- token = token.replace(REGEXP_NEW_LINE, " ");
- token = token.replace(REGEXP_WHITE_SPACES, " ");
- token = token.replace(REGEXP_PRESERVE_HSLA1, "");
- }
- preservedTokens.push(token);
- const preserver = "url(" + ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___)";
- sb.push(preserver);
- appendIndex = endIndex + 1;
- } else {
- // No end terminator found, re-add the whole match. Should we throw/warn here?
- sb.push(css.substring(match.index, pattern.lastIndex));
- appendIndex = pattern.lastIndex;
- }
- }
- sb.push(css.substring(appendIndex));
- return sb.join("");
- }
- const REGEXP_HEX_COLORS = /(=\s*?["']?)?#([0-9a-f])([0-9a-f])([0-9a-f])([0-9a-f])([0-9a-f])([0-9a-f])(\}|[^0-9a-f{][^{]*?\})/gi;
- /**
- * compressHexColors compresses hex color values of the form #AABBCC to #ABC.
- *
- * DOES NOT compress CSS ID selectors which match the above pattern (which would
- * break things), like #AddressForm { ... }
- *
- * DOES NOT compress IE filters, which have hex color values (which would break
- * things), like chroma(color='#FFFFFF');
- *
- * DOES NOT compress invalid hex values, like background-color: #aabbccdd
- *
- * @param {string} css - CSS content
- *
- * @return {string} Processed CSS
- */
- function compressHexColors(css) {
- // Look for hex colors inside { ... } (to avoid IDs) and which don't have a =, or a " in front of them (to avoid filters)
- const pattern = REGEXP_HEX_COLORS;
- const sb = [];
- let index = 0, match;
- while ((match = pattern.exec(css)) !== null) {
- sb.push(css.substring(index, match.index));
- const isFilter = match[1];
- if (isFilter) {
- // Restore, maintain case, otherwise filter will break
- sb.push(match[1] + "#" + (match[2] + match[3] + match[4] + match[5] + match[6] + match[7]));
- } else {
- if (match[2].toLowerCase() == match[3].toLowerCase() &&
- match[4].toLowerCase() == match[5].toLowerCase() &&
- match[6].toLowerCase() == match[7].toLowerCase()) {
- // Compress.
- sb.push("#" + (match[3] + match[5] + match[7]).toLowerCase());
- } else {
- // Non compressible color, restore but lower case.
- sb.push("#" + (match[2] + match[3] + match[4] + match[5] + match[6] + match[7]).toLowerCase());
- }
- }
- index = pattern.lastIndex = pattern.lastIndex - match[8].length;
- }
- sb.push(css.substring(index));
- return sb.join("");
- }
- const REGEXP_KEYFRAMES = /@[a-z0-9-_]*keyframes\s+[a-z0-9-_]+\s*{/gi;
- const REGEXP_WHITE_SPACE = /(^\s|\s$)/g;
- /** keyframes preserves 0 followed by unit in keyframes steps
- *
- * @param {string} content - CSS content
- * @param {string[]} preservedTokens - Global array of tokens to preserve
- *
- * @return {string} Processed CSS
- */
- function keyframes(content, preservedTokens) {
- const pattern = REGEXP_KEYFRAMES;
- let index = 0, buffer;
- const preserve = (part, i) => {
- part = part.replace(REGEXP_WHITE_SPACE, "");
- if (part.charAt(0) === "0") {
- preservedTokens.push(part);
- buffer[i] = ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___";
- }
- };
- while (true) { // eslint-disable-line no-constant-condition
- let level = 0;
- buffer = "";
- let startIndex = content.slice(index).search(pattern);
- if (startIndex < 0) {
- break;
- }
- index += startIndex;
- startIndex = index;
- const len = content.length;
- const buffers = [];
- for (; index < len; ++index) {
- const ch = content.charAt(index);
- if (ch === "{") {
- if (level === 0) {
- buffers.push(buffer.replace(REGEXP_WHITE_SPACE, ""));
- } else if (level === 1) {
- buffer = buffer.split(",");
- buffer.forEach(preserve);
- buffers.push(buffer.join(",").replace(REGEXP_WHITE_SPACE, ""));
- }
- buffer = "";
- level += 1;
- } else if (ch === "}") {
- if (level === 2) {
- buffers.push("{" + buffer.replace(REGEXP_WHITE_SPACE, "") + "}");
- buffer = "";
- } else if (level === 1) {
- content = content.slice(0, startIndex) +
- buffers.shift() + "{" +
- buffers.join("") +
- content.slice(index);
- break;
- }
- level -= 1;
- }
- if (level < 0) {
- break;
- } else if (ch !== "{" && ch !== "}") {
- buffer += ch;
- }
- }
- }
- return content;
- }
- /**
- * collectComments collects all comment blocks and return new content with comment placeholders
- *
- * @param {string} content - CSS content
- * @param {string[]} comments - Global array of extracted comments
- *
- * @return {string} Processed CSS
- */
- function collectComments(content, comments) {
- const table = [];
- let from = 0, end;
- while (true) { // eslint-disable-line no-constant-condition
- const start = content.indexOf("/*", from);
- if (start > -1) {
- end = content.indexOf("*/", start + 2);
- if (end > -1) {
- comments.push(content.slice(start + 2, end));
- table.push(content.slice(from, start));
- table.push("/*___PRESERVE_CANDIDATE_COMMENT_" + (comments.length - 1) + "___*/");
- from = end + 2;
- } else {
- // unterminated comment
- end = -2;
- break;
- }
- } else {
- break;
- }
- }
- table.push(content.slice(end + 2));
- return table.join("");
- }
- /**
- * processString uglifies a CSS string
- *
- * @param {string} content - CSS string
- * @param {options} options - UglifyCSS options
- *
- * @return {string} Uglified result
- */
- // const REGEXP_EMPTY_RULES = /[^};{/]+\{\}/g;
- const REGEXP_PRESERVE_STRING = /("([^\\"]|\\.|\\)*")|('([^\\']|\\.|\\)*')/g;
- const REGEXP_MINIFY_ALPHA = /progid:DXImageTransform.Microsoft.Alpha\(Opacity=/gi;
- const REGEXP_PRESERVE_TOKEN1 = /\r\n/g;
- const REGEXP_PRESERVE_TOKEN2 = /[\r\n]/g;
- const REGEXP_VARIABLES = /@variables\s*\{\s*([^}]+)\s*\}/g;
- const REGEXP_VARIABLE = /\s*([a-z0-9-]+)\s*:\s*([^;}]+)\s*/gi;
- const REGEXP_VARIABLE_VALUE = /var\s*\(\s*([^)]+)\s*\)/g;
- const REGEXP_PRESERVE_CALC = /calc\(([^;}]*)\)/g;
- const REGEXP_TRIM = /(^\s*|\s*$)/g;
- const REGEXP_PRESERVE_CALC2 = /\( /g;
- const REGEXP_PRESERVE_CALC3 = / \)/g;
- const REGEXP_PRESERVE_MATRIX = /\s*filter:\s*progid:DXImageTransform.Microsoft.Matrix\(([^)]+)\);/g;
- const REGEXP_REMOVE_SPACES = /(^|\})(([^{:])+:)+([^{]*{)/g;
- const REGEXP_REMOVE_SPACES2 = /\s+([!{;:>+()\],])/g;
- const REGEXP_REMOVE_SPACES2_BIS = /([^\\])\s+([}])/g;
- const REGEXP_RESTORE_SPACE_IMPORTANT = /!important/g;
- const REGEXP_PSEUDOCLASSCOLON = /___PSEUDOCLASSCOLON___/g;
- const REGEXP_COLUMN = /:/g;
- const REGEXP_PRESERVE_ZERO_UNIT = /\s*(animation|animation-delay|animation-duration|transition|transition-delay|transition-duration):\s*([^;}]+)/gi;
- const REGEXP_PRESERVE_ZERO_UNIT1 = /(^|\D)0?\.?0(m?s)/gi;
- const REGEXP_PRESERVE_FLEX = /\s*(flex|flex-basis):\s*([^;}]+)/gi;
- const REGEXP_SPACES = /\s+/;
- const REGEXP_PRESERVE_HSLA = /(hsla?)\(([^)]+)\)/g;
- const REGEXP_PRESERVE_HSLA1 = /(^\s+|\s+$)/g;
- const REGEXP_RETAIN_SPACE_IE6 = /:first-(line|letter)(\{|,)/gi;
- const REGEXP_CHARSET = /^(.*)(@charset)( "[^"]*";)/gi;
- const REGEXP_REMOVE_SECOND_CHARSET = /^((\s*)(@charset)( [^;]+;\s*))+/gi;
- const REGEXP_LOWERCASE_DIRECTIVES = /@(font-face|import|(?:-(?:atsc|khtml|moz|ms|o|wap|webkit)-)?keyframe|media|page|namespace)/gi;
- const REGEXP_LOWERCASE_PSEUDO_ELEMENTS = /:(active|after|before|checked|disabled|empty|enabled|first-(?:child|of-type)|focus|hover|last-(?:child|of-type)|link|only-(?:child|of-type)|root|:selection|target|visited)/gi;
- const REGEXP_CHARSET2 = /^(.*)(@charset "[^"]*";)/g;
- const REGEXP_CHARSET3 = /^(\s*@charset [^;]+;\s*)+/g;
- const REGEXP_LOWERCASE_FUNCTIONS = /:(lang|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|(?:-(?:atsc|khtml|moz|ms|o|wap|webkit)-)?any)\(/gi;
- const REGEXP_LOWERCASE_FUNCTIONS2 = /([:,( ]\s*)(attr|color-stop|from|rgba|to|url|(?:-(?:atsc|khtml|moz|ms|o|wap|webkit)-)?(?:calc|max|min|(?:repeating-)?(?:linear|radial)-gradient)|-webkit-gradient)/gi;
- const REGEXP_NEWLINE1 = /\s*\/\*/g;
- const REGEXP_NEWLINE2 = /\*\/\s*/g;
- const REGEXP_RESTORE_SPACE1 = /\band\(/gi;
- const REGEXP_RESTORE_SPACE2 = /([^:])not\(/gi;
- const REGEXP_RESTORE_SPACE3 = /\bor\(/gi;
- const REGEXP_REMOVE_SPACES3 = /([!{}:;>+([,])\s+/g;
- const REGEXP_REMOVE_SEMI_COLUMNS = /;+\}/g;
- const REGEXP_REPLACE_ZERO = /(^|[^.0-9\\])(?:0?\.)?0(?:ex|ch|r?em|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|g?rad|turn|ms|k?Hz|dpi|dpcm|dppx|%)(?![a-z0-9])/gi;
- const REGEXP_REPLACE_ZERO_DOT = /([0-9])\.0(ex|ch|r?em|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|g?rad|turn|m?s|k?Hz|dpi|dpcm|dppx|%| |;)/gi;
- const REGEXP_REPLACE_4_ZEROS = /:0 0 0 0(;|\})/g;
- const REGEXP_REPLACE_3_ZEROS = /:0 0 0(;|\})/g;
- // const REGEXP_REPLACE_2_ZEROS = /:0 0(;|\})/g;
- const REGEXP_REPLACE_1_ZERO = /(transform-origin|webkit-transform-origin|moz-transform-origin|o-transform-origin|ms-transform-origin|box-shadow):0(;|\})/gi;
- const REGEXP_REPLACE_ZERO_DOT_DECIMAL = /(:|\s)0+\.(\d+)/g;
- const REGEXP_REPLACE_RGB = /rgb\s*\(\s*([0-9,\s]+)\s*\)/gi;
- const REGEXP_REPLACE_BORDER_ZERO = /(border|border-top|border-right|border-bottom|border-left|outline|background):none(;|\})/gi;
- const REGEXP_REPLACE_IE_OPACITY = /progid:DXImageTransform\.Microsoft\.Alpha\(Opacity=/gi;
- const REGEXP_REPLACE_QUERY_FRACTION = /\(([-A-Za-z]+):([0-9]+)\/([0-9]+)\)/g;
- const REGEXP_QUERY_FRACTION = /___QUERY_FRACTION___/g;
- const REGEXP_REPLACE_SEMI_COLUMNS = /;;+/g;
- const REGEXP_REPLACE_HASH_COLOR = /(:|\s)(#f00)(;|})/g;
- const REGEXP_PRESERVED_NEWLINE = /___PRESERVED_NEWLINE___/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT1 = /(:|\s)(#000080)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT2 = /(:|\s)(#808080)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT3 = /(:|\s)(#808000)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT4 = /(:|\s)(#800080)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT5 = /(:|\s)(#c0c0c0)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT6 = /(:|\s)(#008080)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT7 = /(:|\s)(#ffa500)(;|})/g;
- const REGEXP_REPLACE_HASH_COLOR_SHORT8 = /(:|\s)(#800000)(;|})/g;
- function processString(content = "", options = defaultOptions) {
- const comments = [];
- const preservedTokens = [];
- let pattern;
- const originalContent = content;
- content = extractDataUrls(content, preservedTokens);
- content = collectComments(content, comments);
- // preserve strings so their content doesn't get accidentally minified
- pattern = REGEXP_PRESERVE_STRING;
- content = content.replace(pattern, token => {
- const quote = token.substring(0, 1);
- token = token.slice(1, -1);
- // maybe the string contains a comment-like substring or more? put'em back then
- if (token.indexOf("___PRESERVE_CANDIDATE_COMMENT_") >= 0) {
- for (let i = 0, len = comments.length; i < len; i += 1) {
- token = token.replace("___PRESERVE_CANDIDATE_COMMENT_" + i + "___", comments[i]);
- }
- }
- // minify alpha opacity in filter strings
- token = token.replace(REGEXP_MINIFY_ALPHA, "alpha(opacity=");
- preservedTokens.push(token);
- return quote + ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___" + quote;
- });
- // strings are safe, now wrestle the comments
- for (let i = 0, len = comments.length; i < len; i += 1) {
- const token = comments[i];
- const placeholder = "___PRESERVE_CANDIDATE_COMMENT_" + i + "___";
- // ! in the first position of the comment means preserve
- // so push to the preserved tokens keeping the !
- if (token.charAt(0) === "!") {
- if (options.cuteComments) {
- preservedTokens.push(token.substring(1).replace(REGEXP_PRESERVE_TOKEN1, "\n"));
- } else if (options.uglyComments) {
- preservedTokens.push(token.substring(1).replace(REGEXP_PRESERVE_TOKEN2, ""));
- } else {
- preservedTokens.push(token);
- }
- content = content.replace(placeholder, ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___");
- continue;
- }
- // \ in the last position looks like hack for Mac/IE5
- // shorten that to /*\*/ and the next one to /**/
- if (token.charAt(token.length - 1) === "\\") {
- preservedTokens.push("\\");
- content = content.replace(placeholder, ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___");
- i = i + 1; // attn: advancing the loop
- preservedTokens.push("");
- content = content.replace(
- "___PRESERVE_CANDIDATE_COMMENT_" + i + "___",
- ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___"
- );
- continue;
- }
- // keep empty comments after child selectors (IE7 hack)
- // e.g. html >/**/ body
- if (token.length === 0) {
- const startIndex = content.indexOf(placeholder);
- if (startIndex > 2) {
- if (content.charAt(startIndex - 3) === ">") {
- preservedTokens.push("");
- content = content.replace(placeholder, ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___");
- }
- }
- }
- // in all other cases kill the comment
- content = content.replace(`/*${placeholder}*/`, "");
- }
- // parse simple @variables blocks and remove them
- if (options.expandVars) {
- const vars = {};
- pattern = REGEXP_VARIABLES;
- content = content.replace(pattern, (_, f1) => {
- pattern = REGEXP_VARIABLE;
- f1.replace(pattern, (_, f1, f2) => {
- if (f1 && f2) {
- vars[f1] = f2;
- }
- return "";
- });
- return "";
- });
- // replace var(x) with the value of x
- pattern = REGEXP_VARIABLE_VALUE;
- content = content.replace(pattern, (_, f1) => {
- return vars[f1] || "none";
- });
- }
- // normalize all whitespace strings to single spaces. Easier to work with that way.
- content = content.replace(REGEXP_WHITE_SPACES, " ");
- // preserve formulas in calc() before removing spaces
- pattern = REGEXP_PRESERVE_CALC;
- content = content.replace(pattern, (_, f1) => {
- preservedTokens.push(
- "calc(" +
- f1.replace(REGEXP_TRIM, "")
- .replace(REGEXP_PRESERVE_CALC2, "(")
- .replace(REGEXP_PRESERVE_CALC3, ")") +
- ")"
- );
- return ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___";
- });
- // preserve matrix
- pattern = REGEXP_PRESERVE_MATRIX;
- content = content.replace(pattern, (_, f1) => {
- preservedTokens.push(f1);
- return "filter:progid:DXImageTransform.Microsoft.Matrix(" + ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___);";
- });
- // remove the spaces before the things that should not have spaces before them.
- // but, be careful not to turn 'p :link {...}' into 'p:link{...}'
- // swap out any pseudo-class colons with the token, and then swap back.
- pattern = REGEXP_REMOVE_SPACES;
- content = content.replace(pattern, token => token.replace(REGEXP_COLUMN, "___PSEUDOCLASSCOLON___"));
- // remove spaces before the things that should not have spaces before them.
- content = content.replace(REGEXP_REMOVE_SPACES2, "$1");
- content = content.replace(REGEXP_REMOVE_SPACES2_BIS, "$1$2");
- // restore spaces for !important
- content = content.replace(REGEXP_RESTORE_SPACE_IMPORTANT, " !important");
- // bring back the colon
- content = content.replace(REGEXP_PSEUDOCLASSCOLON, ":");
- // preserve 0 followed by a time unit for properties using time units
- pattern = REGEXP_PRESERVE_ZERO_UNIT;
- content = content.replace(pattern, (_, f1, f2) => {
- f2 = f2.replace(REGEXP_PRESERVE_ZERO_UNIT1, (_, g1, g2) => {
- preservedTokens.push("0" + g2);
- return g1 + ___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___";
- });
- return f1 + ":" + f2;
- });
- // preserve unit for flex-basis within flex and flex-basis (ie10 bug)
- pattern = REGEXP_PRESERVE_FLEX;
- content = content.replace(pattern, (_, f1, f2) => {
- let f2b = f2.split(REGEXP_SPACES);
- preservedTokens.push(f2b.pop());
- f2b.push(___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___");
- f2b = f2b.join(" ");
- return `${f1}:${f2b}`;
- });
- // preserve 0% in hsl and hsla color definitions
- content = content.replace(REGEXP_PRESERVE_HSLA, (_, f1, f2) => {
- const f0 = [];
- f2.split(",").forEach(part => {
- part = part.replace(REGEXP_PRESERVE_HSLA1, "");
- if (part === "0%") {
- preservedTokens.push("0%");
- f0.push(___PRESERVED_TOKEN_ + (preservedTokens.length - 1) + "___");
- } else {
- f0.push(part);
- }
- });
- return f1 + "(" + f0.join(",") + ")";
- });
- // preserve 0 followed by unit in keyframes steps (WIP)
- content = keyframes(content, preservedTokens);
- // retain space for special IE6 cases
- content = content.replace(REGEXP_RETAIN_SPACE_IE6, (_, f1, f2) => ":first-" + f1.toLowerCase() + " " + f2);
- // newlines before and after the end of a preserved comment
- if (options.cuteComments) {
- content = content.replace(REGEXP_NEWLINE1, "___PRESERVED_NEWLINE___/*");
- content = content.replace(REGEXP_NEWLINE2, "*/___PRESERVED_NEWLINE___");
- // no space after the end of a preserved comment
- } else {
- content = content.replace(REGEXP_NEWLINE2, "*/");
- }
- // If there are multiple @charset directives, push them to the top of the file.
- pattern = REGEXP_CHARSET;
- content = content.replace(pattern, (_, f1, f2, f3) => f2.toLowerCase() + f3 + f1);
- // When all @charset are at the top, remove the second and after (as they are completely ignored).
- pattern = REGEXP_REMOVE_SECOND_CHARSET;
- content = content.replace(pattern, (_, __, f2, f3, f4) => f2 + f3.toLowerCase() + f4);
- // lowercase some popular @directives (@charset is done right above)
- pattern = REGEXP_LOWERCASE_DIRECTIVES;
- content = content.replace(pattern, (_, f1) => "@" + f1.toLowerCase());
- // lowercase some more common pseudo-elements
- pattern = REGEXP_LOWERCASE_PSEUDO_ELEMENTS;
- content = content.replace(pattern, (_, f1) => ":" + f1.toLowerCase());
- // if there is a @charset, then only allow one, and push to the top of the file.
- content = content.replace(REGEXP_CHARSET2, "$2$1");
- content = content.replace(REGEXP_CHARSET3, "$1");
- // lowercase some more common functions
- pattern = REGEXP_LOWERCASE_FUNCTIONS;
- content = content.replace(pattern, (_, f1) => ":" + f1.toLowerCase() + "(");
- // lower case some common function that can be values
- // NOTE: rgb() isn't useful as we replace with #hex later, as well as and() is already done for us right after this
- pattern = REGEXP_LOWERCASE_FUNCTIONS2;
- content = content.replace(pattern, (_, f1, f2) => f1 + f2.toLowerCase());
- // put the space back in some cases, to support stuff like
- // @media screen and (-webkit-min-device-pixel-ratio:0){
- content = content.replace(REGEXP_RESTORE_SPACE1, "and (");
- content = content.replace(REGEXP_RESTORE_SPACE2, "$1not (");
- content = content.replace(REGEXP_RESTORE_SPACE3, "or (");
- // remove the spaces after the things that should not have spaces after them.
- content = content.replace(REGEXP_REMOVE_SPACES3, "$1");
- // remove unnecessary semicolons
- content = content.replace(REGEXP_REMOVE_SEMI_COLUMNS, "}");
- // replace 0(px,em,%) with 0.
- content = content.replace(REGEXP_REPLACE_ZERO, "$10");
- // Replace x.0(px,em,%) with x(px,em,%).
- content = content.replace(REGEXP_REPLACE_ZERO_DOT, "$1$2");
- // replace 0 0 0 0; with 0.
- content = content.replace(REGEXP_REPLACE_4_ZEROS, ":0$1");
- content = content.replace(REGEXP_REPLACE_3_ZEROS, ":0$1");
- // content = content.replace(REGEXP_REPLACE_2_ZEROS, ":0$1");
- // replace background-position:0; with background-position:0 0;
- // same for transform-origin and box-shadow
- pattern = REGEXP_REPLACE_1_ZERO;
- content = content.replace(pattern, (_, f1, f2) => f1.toLowerCase() + ":0 0" + f2);
- // replace 0.6 to .6, but only when preceded by : or a white-space
- content = content.replace(REGEXP_REPLACE_ZERO_DOT_DECIMAL, "$1.$2");
- // shorten colors from rgb(51,102,153) to #336699
- // this makes it more likely that it'll get further compressed in the next step.
- pattern = REGEXP_REPLACE_RGB;
- content = content.replace(pattern, (_, f1) => {
- const rgbcolors = f1.split(",");
- let hexcolor = "#";
- for (let i = 0; i < rgbcolors.length; i += 1) {
- let val = parseInt(rgbcolors[i], 10);
- if (val < 16) {
- hexcolor += "0";
- }
- if (val > 255) {
- val = 255;
- }
- hexcolor += val.toString(16);
- }
- return hexcolor;
- });
- // Shorten colors from #AABBCC to #ABC.
- content = compressHexColors(content);
- // Replace #f00 -> red
- content = content.replace(REGEXP_REPLACE_HASH_COLOR, "$1red$3");
- // Replace other short color keywords
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT1, "$1navy$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT2, "$1gray$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT3, "$1olive$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT4, "$1purple$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT5, "$1silver$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT6, "$1teal$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT7, "$1orange$3");
- content = content.replace(REGEXP_REPLACE_HASH_COLOR_SHORT8, "$1maroon$3");
- // border: none -> border:0
- pattern = REGEXP_REPLACE_BORDER_ZERO;
- content = content.replace(pattern, (_, f1, f2) => f1.toLowerCase() + ":0" + f2);
- // shorter opacity IE filter
- content = content.replace(REGEXP_REPLACE_IE_OPACITY, "alpha(opacity=");
- // Find a fraction that is used for Opera's -o-device-pixel-ratio query
- // Add token to add the '\' back in later
- content = content.replace(REGEXP_REPLACE_QUERY_FRACTION, "($1:$2___QUERY_FRACTION___$3)");
- // remove empty rules.
- // content = content.replace(REGEXP_EMPTY_RULES, "");
- // Add '\' back to fix Opera -o-device-pixel-ratio query
- content = content.replace(REGEXP_QUERY_FRACTION, "/");
- // some source control tools don't like it when files containing lines longer
- // than, say 8000 characters, are checked in. The linebreak option is used in
- // that case to split long lines after a specific column.
- if (options.maxLineLen > 0) {
- const lines = [];
- let line = [];
- for (let i = 0, len = content.length; i < len; i += 1) {
- const ch = content.charAt(i);
- line.push(ch);
- if (ch === "}" && line.length > options.maxLineLen) {
- lines.push(line.join(""));
- line = [];
- }
- }
- if (line.length) {
- lines.push(line.join(""));
- }
- content = lines.join("\n");
- }
- // replace multiple semi-colons in a row by a single one
- // see SF bug #1980989
- content = content.replace(REGEXP_REPLACE_SEMI_COLUMNS, ";");
- // trim the final string (for any leading or trailing white spaces)
- content = content.replace(REGEXP_TRIM, "");
- if (preservedTokens.length > 1000) {
- return originalContent;
- }
- // restore preserved tokens
- for (let i = preservedTokens.length - 1; i >= 0; i--) {
- content = content.replace(___PRESERVED_TOKEN_ + i + "___", preservedTokens[i], "g");
- }
- // restore preserved newlines
- content = content.replace(REGEXP_PRESERVED_NEWLINE, "\n");
- // return
- return content;
- }
- return {
- defaultOptions,
- processString
- };
- })();
|