🔧 npm update
This commit is contained in:
12
node_modules/postcss/lib/rule.js
generated
vendored
12
node_modules/postcss/lib/rule.js
generated
vendored
@@ -4,12 +4,6 @@ let Container = require('./container')
|
||||
let list = require('./list')
|
||||
|
||||
class Rule extends Container {
|
||||
constructor(defaults) {
|
||||
super(defaults)
|
||||
this.type = 'rule'
|
||||
if (!this.nodes) this.nodes = []
|
||||
}
|
||||
|
||||
get selectors() {
|
||||
return list.comma(this.selector)
|
||||
}
|
||||
@@ -19,6 +13,12 @@ class Rule extends Container {
|
||||
let sep = match ? match[0] : ',' + this.raw('between', 'beforeOpen')
|
||||
this.selector = values.join(sep)
|
||||
}
|
||||
|
||||
constructor(defaults) {
|
||||
super(defaults)
|
||||
this.type = 'rule'
|
||||
if (!this.nodes) this.nodes = []
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Rule
|
||||
|
||||
Reference in New Issue
Block a user