autoprefixer
Advanced tools
@@ -355,3 +355,3 @@ let parser = require('postcss-value-parser') | ||
| for (let param of params) { | ||
| node.nodes = node.nodes.concat(param) | ||
| node.nodes.push(...param) | ||
| } | ||
@@ -358,0 +358,0 @@ |
@@ -138,9 +138,10 @@ let parser = require('postcss-value-parser') | ||
| if (node.type === 'function' && node.value === 'repeat') { | ||
| return nodes.concat({ | ||
| nodes.push({ | ||
| type: 'word', | ||
| value: transformRepeat(node, { gap }) | ||
| }) | ||
| return nodes | ||
| } | ||
| if (gap && node.type === 'space') { | ||
| return nodes.concat( | ||
| nodes.push( | ||
| { | ||
@@ -156,4 +157,6 @@ type: 'space', | ||
| ) | ||
| return nodes | ||
| } | ||
| return nodes.concat(node) | ||
| nodes.push(node) | ||
| return nodes | ||
| }, []) | ||
@@ -1051,3 +1054,4 @@ | ||
| } | ||
| return result.concat(parser.stringify(node)) | ||
| result.push(parser.stringify(node)) | ||
| return result | ||
| }, []) | ||
@@ -1054,0 +1058,0 @@ |
@@ -317,3 +317,3 @@ let { list } = require('postcss') | ||
| } | ||
| nodes = nodes.concat(param) | ||
| nodes.push(...param) | ||
| } | ||
@@ -320,0 +320,0 @@ if (nodes[0].type === 'div') { |
+2
-2
| { | ||
| "name": "autoprefixer", | ||
| "version": "10.4.23", | ||
| "version": "10.4.24", | ||
| "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", | ||
@@ -43,3 +43,3 @@ "engines": { | ||
| "browserslist": "^4.28.1", | ||
| "caniuse-lite": "^1.0.30001760", | ||
| "caniuse-lite": "^1.0.30001766", | ||
| "fraction.js": "^5.3.4", | ||
@@ -46,0 +46,0 @@ "picocolors": "^1.1.1", |
199026
0.01%7010
0.06%Updated