Closed rejhgadellaa closed 5 years ago
Gulp-autoprefixer removes the -webkit-box-orient: vertical; property from my css.
-webkit-box-orient: vertical;
I tried using the "remove" option, setting it to false: .pipe(autoprefixer({remove: false}) but that doesn't seem to work.
.pipe(autoprefixer({remove: false})
Is this broken?
Update: right, version numbers.. gulp 4.0 gulp-autoprefixer 5.0.0
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
Will have a look thanks
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