Frontend/25_01_07/mai/node_modules/cssnano-utils/src/rawCache.js

35 lines
741 B
JavaScript
Raw Normal View History

2025-01-28 10:38:27 +00:00
'use strict';
/**
* @type {import('postcss').PluginCreator<void>}
* @return {import('postcss').Plugin}
*/
function pluginCreator() {
return {
postcssPlugin: 'cssnano-util-raw-cache',
/**
* @param {import('postcss').Root} css
* @param {{result: import('postcss').Result & {root: {rawCache?: any}}}} arg
*/
OnceExit(css, { result }) {
result.root.rawCache = {
colon: ':',
indent: '',
beforeDecl: '',
beforeRule: '',
beforeOpen: '',
beforeClose: '',
beforeComment: '',
after: '',
emptyBody: '',
commentLeft: '',
commentRight: '',
};
},
};
}
pluginCreator.postcss = true;
module.exports = pluginCreator;