Skip to content

Commit

Permalink
core: update default browserslist;
Browse files Browse the repository at this point in the history
- with simple testing, no addl bundle size
- yields 2% addl global coverage
- Closes #48
  • Loading branch information
lukeed committed Oct 6, 2018
1 parent d639bfb commit 02ec952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/lib/init.js
Expand Up @@ -232,8 +232,8 @@ module.exports = function (type, dir, opts) {
});

// Add "browserslist" key w/ defaults
// @see https://jamie.build/last-2-versions
pkg.browserslist = ['>0.25%', 'not ie 11', 'not op_mini all'];
// @see https://browserl.ist/?q=%3E+0.25%25%2C+last+1+version%2C+not+ie+11%2C+not+ie_mob+11%2C+not+dead
pkg.browserslist = ['>0.25%', 'last 1 version', 'not ie_mob 11', 'not ie 11', 'not dead'];

// Scaffold new files in `dest` target
// ---
Expand Down

0 comments on commit 02ec952

Please sign in to comment.