Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
11
Frontend-Learner/node_modules/postcss-js/process-result.js
generated
vendored
Normal file
11
Frontend-Learner/node_modules/postcss-js/process-result.js
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue