Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
imalireports
/
node_modules
/
cssnano-utils
/
src
:
rawCache.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
'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;