Skip to content
New issue

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

Update BrowserList configuration and usage. Closes #108 #109

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 10 additions & 6 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[production staging]
> 1%
ie 10
# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries
#
# For IE 10-11 support, please remove 'not' from the last line of the file and adjust as needed

[development]
last 1 chrome version
last 1 firefox version
> 0.5%
last 2 versions
Firefox ESR
not dead
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i don't find the coverage of not dead: https://browserl.ist/?q=not+dead
instead i can see the others, eg. https://browserl.ist/?q=%3E+0.5%25

IE 11
6 changes: 1 addition & 5 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
module.exports = {
plugins: {
autoprefixer: {
browsers: ['last 2 versions']
},
},
plugins: [require('autoprefixer')]
};