persona-community-5/.pnpm-store/v3/files/1d/cb079a9c211532ef8ebf85a43789123502d101ac0ef778158c0f58b628383b6f01fb0ed97a05a5711174b792cd5e771d9445233d063594d37d089903e63148
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
300 B
Plaintext

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)
}