Skip to content

Commit 5dd0340

Browse files
authored
feat!: drop IE11 support in CLI UI (#6439)
1 parent cd6db82 commit 5dd0340

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

packages/@vue/cli-ui-addon-webpack/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"browserslist": [
4040
"> 1%",
4141
"last 2 versions",
42-
"not dead"
42+
"not dead",
43+
"not ie 11"
4344
],
4445
"publishConfig": {
4546
"access": "public"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
> 1%
22
last 2 versions
33
not dead
4+
not ie 11

packages/@vue/cli-ui/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"test:e2e": "yarn run test:clear && start-server-and-test apollo:start:test http://localhost:4040/.well-known/apollo/server-health test:e2e:dev",
1919
"test:start": "yarn run test:clear && start-server-and-test apollo:start:test http://localhost:4040/.well-known/apollo/server-health test:e2e:start",
2020
"test:e2e:dev": "cross-env VUE_APP_CLI_UI_URL=ws://localhost:4040/graphql vue-cli-service test:e2e --mode development",
21-
"test:e2e:start": "vue-cli-service test:e2e --mode production --headless --url=http://localhost:4040",
21+
"test:e2e:start": "vue-cli-service test:e2e --mode production --browser chrome --headless --url=http://localhost:4040",
2222
"test:clear": "rimraf ../../test/cli-ui-test && rimraf ./live-test",
2323
"test": "yarn run build && cd ../cli-ui-addon-webpack && yarn run build && cd ../cli-ui-addon-widgets && yarn run build && cd ../cli-ui && yarn run test:start"
2424
},
@@ -111,7 +111,8 @@
111111
"browserslist": [
112112
"> 1%",
113113
"last 2 versions",
114-
"not dead"
114+
"not dead",
115+
"not ie 11"
115116
],
116117
"main": "index.js",
117118
"license": "MIT",

0 commit comments

Comments
 (0)