Autoprefixer Versions Save

Parse CSS and add vendor prefixes to rules by Can I Use

10.2.6

3 years ago
  • Fixed “no prefixes needed” warning (by @Pwntheon).

10.2.5

3 years ago
  • Fixed : support in @supports (by @Semigradsky).
  • Fixed docs (by @coliff).

10.2.4

3 years ago
  • Fixed browser names in npx autoprefixer --info.

10.2.3

3 years ago
  • Fixed PostCSS 8 support.

10.2.2

3 years ago
  • Fixed PostCSS 8 plugins compatibility.

10.2.1

3 years ago
  • Fixed transition-property warnings (by @Sheraff).

10.2.0

3 years ago
Tudor rose

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.

10.1.0

3 years ago
Coat of arms of Botswana

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) {
  …
}

10.0.4

3 years ago
  • Fixed Cannot read property 'proxyOf' of undefined error (by @igorkamyshev).

10.0.3

3 years ago
  • Fixed substract to subtract value for mask-composite (by @crankysparrow).