Spaces:
Running
Running
File size: 300 Bytes
d8f0e51 |
1 2 3 4 5 6 7 8 9 10 11 12 |
let objectify = require('./objectifier')
module.exports = function processResult(result) {
if (console && console.warn) {
result.warnings().forEach(warn => {
let source = warn.plugin || 'PostCSS'
console.warn(source + ': ' + warn.text)
})
}
return objectify(result.root)
}
|