10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
|
const postcss = require('postcss')
|
||
|
|
||
|
module.exports = postcss.plugin('trim', opts => css => {
|
||
|
css.walk(({ type, raws }) => {
|
||
|
if (type === 'rule' || type === 'atrule') {
|
||
|
raws.before = raws.after = '\n'
|
||
|
}
|
||
|
})
|
||
|
})
|