Skip to content

Commit

Permalink
feat: add "not dead" to the default browserslist query (#5233)
Browse files Browse the repository at this point in the history
  • Loading branch information
sodatea committed Mar 19, 2020
1 parent 0609b1b commit a1782f9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/@vue/cli-service/generator/index.js
Expand Up @@ -16,7 +16,8 @@ module.exports = (api, options) => {
},
browserslist: [
'> 1%',
'last 2 versions'
'last 2 versions',
'not dead'
]
})

Expand Down
3 changes: 2 additions & 1 deletion packages/@vue/cli-ui-addon-webpack/package.json
Expand Up @@ -37,7 +37,8 @@
},
"browserslist": [
"> 1%",
"last 2 versions"
"last 2 versions",
"not dead"
],
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions packages/@vue/cli-ui-addon-widgets/.browserslistrc
@@ -1,2 +1,3 @@
> 1%
last 2 versions
not dead
3 changes: 2 additions & 1 deletion packages/@vue/cli-ui/package.json
Expand Up @@ -107,7 +107,8 @@
},
"browserslist": [
"> 1%",
"last 2 versions"
"last 2 versions",
"not dead"
],
"main": "index.js",
"license": "MIT",
Expand Down

0 comments on commit a1782f9

Please sign in to comment.