sindresorhus / gulp-autoprefixer

Prefix CSS
MIT License
694 stars 50 forks source link

Autoprefixer option {remove: false} is ignored/broken? #101

Closed rejhgadellaa closed 5 years ago

rejhgadellaa commented 6 years ago

Gulp-autoprefixer removes the -webkit-box-orient: vertical; property from my css.

I tried using the "remove" option, setting it to false: .pipe(autoprefixer({remove: false}) but that doesn't seem to work.

Is this broken?

Update: right, version numbers.. gulp 4.0 gulp-autoprefixer 5.0.0

sindresorhus commented 6 years ago

This plugin just passes your options directly to Autoprefixer, so the issue must be there. Maybe related to https://github.com/postcss/autoprefixer/issues/1014

rejhgadellaa commented 6 years ago

Will have a look thanks