autoprefixer 10.3.0 → 10.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/processor.js +3 -0
  2. package/package.json +1 -1
package/lib/processor.js CHANGED
@@ -497,6 +497,9 @@ class Processor {
497
497
  return true
498
498
  }
499
499
  }
500
+ if (node.type === 'decl' && node.prop === 'content') {
501
+ return true
502
+ }
500
503
 
501
504
  return this.disabled(node, result)
502
505
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoprefixer",
3
- "version": "10.3.0",
3
+ "version": "10.3.1",
4
4
  "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"