Update dependency autoprefixer to ^10.2.1
Created by: renovate[bot]
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
autoprefixer | ^10.0.4 -> ^10.2.1 |
Release Notes
postcss/autoprefixer
v10.2.1
- Fixed
transition-property
warnings (by @Sheraff).
v10.2.0
Autoprefixer 10.2 now has built-in TypeScript definitions. You do not need @types/autoprefixer
anymore.
Thanks to @Semigradsky and DefinitelyTyped’s contributors.
@Sheraff also improved docs.
v10.1.0
Autoprefixer 10.1 improved min-resolution
support.
@infusion added dpcm
unit support and num2fraction
with Fraction.js, which uses Farey Sequences as a rational approximation (more precise) and simplifies the fraction using continued fractions to ɛ <0.001 afterward.
/* input */
@​media (min-resolution: 113.38dpcm) {
…
}
/* output */
@​media (-webkit-min-device-pixel-ratio: 3),
(min--moz-device-pixel-ratio: 3),
(-o-min-device-pixel-ratio: 3/1),
(min-resolution: 113.38dpcm) {
…
}
Renovate configuration
-
If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.