Skip to content

Commit

Permalink
2.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JayCanuck committed Jun 10, 2019
2 parents 97afbd3 + c17951d commit 6294cb2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.2.1 (June 10, 2019)

* Expand default browserslist config from `last 2` stable versions of Chrome and Firefox to `last 5`.

# 2.2.0 (May 7, 2019)
* Updated all dependencies to latest releases.
* `PrerenderPlugin`:
Expand Down
11 changes: 10 additions & 1 deletion option-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@ const path = require('path');
const browserslist = require('browserslist');
const pkgRoot = require('./package-root');

const defaultTargets = ['>1%', 'last 2 versions', 'Firefox ESR', 'not ie < 12', 'not ie_mob < 12', 'not dead'];
const defaultTargets = [
'>1%',
'last 2 versions',
'last 5 Chrome versions',
'last 5 Firefox versions',
'Firefox ESR',
'not ie < 12',
'not ie_mob < 12',
'not dead'
];
const pkg = pkgRoot();
let enact = pkg.meta.enact || {};

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/dev-utils",
"version": "2.2.0",
"version": "2.2.1",
"description": "A collection of development utilities for Enact apps.",
"main": "index.js",
"author": "Jason Robitaille <jason.robitaille@lge.com>",
Expand Down

0 comments on commit 6294cb2

Please sign in to comment.