We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On page: https://www.npmjs.com/package/gulp-autoprefixer there is old syntax. Parameter "browsers" in depreaced and task syntax is for gulp 3.9.
On gulp 4.0 you must use syntax like that:
const css = function() { return gulp.src('src/app.css') .pipe(autoprefixer({ cascade: false })) .pipe(gulp.dest('dist')); }
According to browserlist instruction, parameter "browser" must be change to correct info: https://github.com/browserslist/browserslist
This should be in instruction.
The text was updated successfully, but these errors were encountered:
ab49120
No branches or pull requests
On page:
https://www.npmjs.com/package/gulp-autoprefixer
there is old syntax. Parameter "browsers" in depreaced and task syntax is for gulp 3.9.
On gulp 4.0 you must use syntax like that:
According to browserlist instruction, parameter "browser" must be change to correct info:
https://github.com/browserslist/browserslist
This should be in instruction.
The text was updated successfully, but these errors were encountered: