Начат фронтенд
This commit is contained in:
10
node_modules/postcss/lib/result.js
generated
vendored
10
node_modules/postcss/lib/result.js
generated
vendored
@@ -3,16 +3,12 @@
|
||||
let Warning = require('./warning')
|
||||
|
||||
class Result {
|
||||
get content() {
|
||||
return this.css
|
||||
}
|
||||
|
||||
constructor(processor, root, opts) {
|
||||
this.processor = processor
|
||||
this.messages = []
|
||||
this.root = root
|
||||
this.opts = opts
|
||||
this.css = ''
|
||||
this.css = undefined
|
||||
this.map = undefined
|
||||
}
|
||||
|
||||
@@ -36,6 +32,10 @@ class Result {
|
||||
warnings() {
|
||||
return this.messages.filter(i => i.type === 'warning')
|
||||
}
|
||||
|
||||
get content() {
|
||||
return this.css
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Result
|
||||
|
||||
Reference in New Issue
Block a user