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.

25 lines
613 B

4 years ago
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _postcss = require('postcss');
  6. exports.default = (0, _postcss.plugin)('cssnano-util-raw-cache', () => {
  7. return (css, result) => {
  8. result.root.rawCache = {
  9. colon: ':',
  10. indent: '',
  11. beforeDecl: '',
  12. beforeRule: '',
  13. beforeOpen: '',
  14. beforeClose: '',
  15. beforeComment: '',
  16. after: '',
  17. emptyBody: '',
  18. commentLeft: '',
  19. commentRight: ''
  20. };
  21. };
  22. });
  23. module.exports = exports['default'];