You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
20 lines
391 B
module.exports = {
|
|
// remove variable comments from css
|
|
variables : {
|
|
in : /\/\*[\s\S]+\/\* End Config \*\//m,
|
|
out : '',
|
|
},
|
|
// adds spacing around comments
|
|
large: {
|
|
in : /(\/\*\*\*\*[\s\S]+?\*\/)/mg,
|
|
out : '\n\n$1\n'
|
|
},
|
|
small: {
|
|
in : /(\/\*---[\s\S]+?\*\/)/mg,
|
|
out : '\n$1\n'
|
|
},
|
|
tiny: {
|
|
in : /(\/\* [\s\S]+? \*\/)/mg,
|
|
out : '\n$1'
|
|
}
|
|
};
|