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.

19 lines
391 B

  1. module.exports = {
  2. // remove variable comments from css
  3. variables : {
  4. in : /\/\*[\s\S]+\/\* End Config \*\//m,
  5. out : '',
  6. },
  7. // adds spacing around comments
  8. large: {
  9. in : /(\/\*\*\*\*[\s\S]+?\*\/)/mg,
  10. out : '\n\n$1\n'
  11. },
  12. small: {
  13. in : /(\/\*---[\s\S]+?\*\/)/mg,
  14. out : '\n$1\n'
  15. },
  16. tiny: {
  17. in : /(\/\* [\s\S]+? \*\/)/mg,
  18. out : '\n$1'
  19. }
  20. };