motion
Version:
motion - moving development forward
22 lines (19 loc) • 556 B
JavaScript
var postcss = require('postcss');
module.exports = postcss.plugin('cssnano-reset-stylecache', function () {
return function (css, result) {
result.root.rawCache = {
colon: ':',
indent: '',
beforeDecl: '',
beforeRule: '',
beforeOpen: '',
beforeClose: '',
beforeComment: '',
after: '',
emptyBody: '',
commentLeft: '',
commentRight: ''
};
};
});
;