forked from preboot/angularjs-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update BrowserList configuration and usage. Closes preboot#108
- single place of configuration via .browserlistrc file - up-to-date configuration aligned with @angular/cli generated one Thanks!
- Loading branch information
1 parent
f834de3
commit f26ae18
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
IE 10-11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')] | ||
}; |