更新
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
'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;
|
||||
Reference in New Issue
Block a user