styleCache.js 587 B

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