aboutsummaryrefslogtreecommitdiff
path: root/node_modules/cssnano/dist/lib/styleCache.js
blob: 75a7757c0ad6445a7a4c9a41d3c8f49dae4e293f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'use strict';

exports.__esModule = true;

var _postcss = require('postcss');

exports.default = (0, _postcss.plugin)('cssnano-reset-stylecache', function () {
    return function (css, result) {
        result.root.rawCache = {
            colon: ':',
            indent: '',
            beforeDecl: '',
            beforeRule: '',
            beforeOpen: '',
            beforeClose: '',
            beforeComment: '',
            after: '',
            emptyBody: '',
            commentLeft: '',
            commentRight: ''
        };
    };
});
module.exports = exports['default'];