Skip to content

Commit 86c500f

Browse files
authored
chore: dependency maintenance (#4734)
* chore: dependency maintenance * Revert "test: replace `waitForFunction` with `waitForXPath`" This reverts commit b2848ae.
1 parent 96890b5 commit 86c500f

File tree

25 files changed

+2069
-2361
lines changed

25 files changed

+2069
-2361
lines changed

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,31 +43,31 @@
4343
]
4444
},
4545
"devDependencies": {
46-
"@babel/core": "^7.4.5",
46+
"@babel/core": "^7.6.4",
4747
"@vue/eslint-config-airbnb": "^4.0.0",
4848
"@vue/eslint-config-prettier": "^5.0.0",
4949
"@vue/eslint-config-standard": "^4.0.0",
5050
"@vue/eslint-config-typescript": "^4.0.0",
51-
"@vuepress/plugin-pwa": "^1.0.4",
52-
"@vuepress/theme-vue": "^1.0.4",
51+
"@vuepress/plugin-pwa": "^1.2.0",
52+
"@vuepress/theme-vue": "^1.2.0",
5353
"babel-core": "7.0.0-bridge.0",
54-
"babel-eslint": "^10.0.1",
55-
"babel-jest": "^24.8.0",
54+
"babel-eslint": "^10.0.3",
55+
"babel-jest": "^24.9.0",
5656
"chromedriver": "^77.0.0",
5757
"debug": "^4.1.0",
5858
"eslint": "^5.16.0",
59-
"eslint-plugin-graphql": "^3.0.3",
59+
"eslint-plugin-graphql": "^3.1.0",
6060
"eslint-plugin-node": "^9.1.0",
61-
"eslint-plugin-prettier": "^3.1.0",
61+
"eslint-plugin-prettier": "^3.1.1",
6262
"eslint-plugin-vue": "^5.2.2",
6363
"eslint-plugin-vue-libs": "^4.0.0",
6464
"execa": "^1.0.0",
65-
"geckodriver": "^1.16.2",
65+
"geckodriver": "^1.19.0",
6666
"globby": "^9.2.0",
6767
"graphql": "^14.3.1",
6868
"http-server": "^0.11.1",
6969
"inquirer": "^6.3.1",
70-
"jest": "^24.7.1",
70+
"jest": "^24.9.0",
7171
"lerna": "^3.13.4",
7272
"lerna-changelog": "^0.8.2",
7373
"lint-staged": "^8.1.5",
@@ -79,11 +79,12 @@
7979
"rimraf": "^2.6.2",
8080
"semver": "^6.1.0",
8181
"typescript": "^3.4.5",
82-
"vuepress": "^1.0.4",
82+
"vuepress": "^1.2.0",
8383
"webpack": "^4.0.0",
8484
"yorkie": "^2.0.0"
8585
},
8686
"resolutions": {
87+
"puppeteer": "1.11.0",
8788
"vue": "^2.6.10",
8889
"vue-template-compiler": "^2.6.10",
8990
"vue-server-renderer": "^2.6.10"

packages/@vue/babel-preset-app/package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,20 @@
2222
},
2323
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/babel-preset-app#readme",
2424
"dependencies": {
25+
"@babel/core": "^7.6.4",
2526
"@babel/helper-module-imports": "^7.0.0",
2627
"@babel/plugin-proposal-class-properties": "^7.4.4",
27-
"@babel/plugin-proposal-decorators": "^7.4.4",
28+
"@babel/plugin-proposal-decorators": "^7.6.0",
2829
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
2930
"@babel/plugin-syntax-jsx": "^7.0.0",
30-
"@babel/plugin-transform-runtime": "^7.4.3",
31-
"@babel/preset-env": "^7.4.5",
32-
"@babel/runtime": "^7.4.5",
33-
"@babel/runtime-corejs3": "^7.4.5",
34-
"@vue/babel-preset-jsx": "^1.0.0",
31+
"@babel/plugin-transform-runtime": "^7.6.2",
32+
"@babel/preset-env": "^7.6.3",
33+
"@babel/runtime": "^7.6.3",
34+
"@babel/runtime-corejs3": "^7.6.3",
35+
"@vue/babel-preset-jsx": "^1.1.1",
3536
"babel-plugin-dynamic-import-node": "^2.2.0",
3637
"babel-plugin-module-resolver": "^3.2.0",
37-
"core-js": "^3.1.2",
38-
"core-js-compat": "^3.1.2"
38+
"core-js": "^3.3.2",
39+
"core-js-compat": "^3.3.2"
3940
}
4041
}

packages/@vue/cli-plugin-babel/generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = api => {
1010
presets: ['@vue/cli-plugin-babel/preset']
1111
},
1212
dependencies: {
13-
'core-js': '^3.1.2'
13+
'core-js': '^3.3.2'
1414
}
1515
})
1616
}

packages/@vue/cli-plugin-babel/migrator/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = (api) => {
66
if (api.fromVersion('^3')) {
77
api.extendPackage({
88
dependencies: {
9-
'core-js': '^3.1.2'
9+
'core-js': '^3.3.2'
1010
}
1111
}, true)
1212

packages/@vue/cli-plugin-babel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-babel#readme",
2222
"dependencies": {
23-
"@babel/core": "^7.4.5",
23+
"@babel/core": "^7.6.4",
2424
"@vue/babel-preset-app": "^4.0.4",
2525
"@vue/cli-shared-utils": "^4.0.4",
2626
"babel-loader": "^8.0.6",

packages/@vue/cli-plugin-e2e-cypress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@vue/cli-shared-utils": "^4.0.4",
2727
"cypress": "^3.3.1",
28-
"eslint-plugin-cypress": "^2.2.1"
28+
"eslint-plugin-cypress": "^2.7.0"
2929
},
3030
"peerDependencies": {
3131
"@vue/cli-service": "^3.0.0 || ^4.0.0-0"

packages/@vue/cli-plugin-e2e-nightwatch/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"@vue/cli-shared-utils": "^4.0.4",
2727
"deepmerge": "^3.2.0",
2828
"execa": "^1.0.0",
29-
"nightwatch": "^1.2.2"
29+
"nightwatch": "^1.2.4"
3030
},
3131
"devDependencies": {
3232
"chromedriver": "^77.0.0",
33-
"geckodriver": "^1.16.2",
33+
"geckodriver": "^1.19.0",
3434
"selenium-server": "^3.141.59"
3535
},
3636
"peerDependencies": {

packages/@vue/cli-plugin-eslint/generator/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = (api, { config, lintOn = [] }, _, invoking) => {
2020
}
2121

2222
if (!api.hasPlugin('typescript')) {
23-
pkg.devDependencies['babel-eslint'] = '^10.0.1'
23+
pkg.devDependencies['babel-eslint'] = '^10.0.3'
2424
}
2525

2626
if (config === 'airbnb') {
@@ -37,7 +37,7 @@ module.exports = (api, { config, lintOn = [] }, _, invoking) => {
3737
eslintConfig.extends.push('@vue/prettier')
3838
Object.assign(pkg.devDependencies, {
3939
'@vue/eslint-config-prettier': '^5.0.0',
40-
'eslint-plugin-prettier': '^3.1.0',
40+
'eslint-plugin-prettier': '^3.1.1',
4141
prettier: '^1.18.2'
4242
})
4343
// prettier & default config do not have any style rules

packages/@vue/cli-plugin-router/generator/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = (api, options = {}) => {
44

55
api.extendPackage({
66
dependencies: {
7-
'vue-router': '^3.0.6'
7+
'vue-router': '^3.1.3'
88
}
99
})
1010

packages/@vue/cli-plugin-typescript/__tests__/tsPlugin.helper.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ exports.assertServe = async (name, options) => {
2222
project.write(`src/App.vue`, file.replace(msg, `Updated`))
2323
await nextUpdate() // wait for child stdout update signal
2424
try {
25-
await page.waitForXPath('//h1[contains(text(), "Updated")]', { timeout: 60000 })
25+
await page.waitForFunction(selector => {
26+
const el = document.querySelector(selector)
27+
return el && el.textContent.includes('Updated')
28+
}, { timeout: 60000 }, 'h1')
2629
} catch (e) {
2730
if (process.env.APPVEYOR && e.message.match('timeout')) {
2831
// AppVeyor VM is so slow that there's a large chance this test cases will time out,

0 commit comments

Comments
 (0)