File size: 622 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
// Originated from https://github.com/Timer/cssnano-preset-simple/blob/master/postcss-plugin-stub/index.js
/**
* This file creates a stub postcss plugin
*
* It will be pre-compiled into "src/compiled/postcss-plugin-stub-for-cssnano-simple",
* which "postcss-svgo" will be aliased to when creating "cssnano-preset-simple"
*/
function pluginCreator() {
return {
postcssPlugin: 'postcss-plugin-stub',
prepare() {
return {}
},
}
}
pluginCreator.postcss = true
Object.defineProperty(exports, '__esModule', {
value: true,
})
module.exports = pluginCreator
module.exports.default = pluginCreator
|