Skip to content

Commit a44fd5d

Browse files
fix(deps): update all non-major dependencies (#4545)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
1 parent c849667 commit a44fd5d

File tree

9 files changed

+98
-108
lines changed

9 files changed

+98
-108
lines changed

.github/workflows/issue-close-require.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: need reproduction
12-
uses: actions-cool/issues-helper@v2.2.1
12+
uses: actions-cool/issues-helper@v2.4.3
1313
with:
1414
actions: "close-issues"
1515
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/issue-labeled.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- name: contribution welcome
1212
if: github.event.label.name == 'contribution welcome' || github.event.label.name == 'help wanted'
13-
uses: actions-cool/issues-helper@v2.2.1
13+
uses: actions-cool/issues-helper@v2.4.3
1414
with:
1515
actions: "create-comment, remove-labels"
1616
token: ${{ secrets.GITHUB_TOKEN }}
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: remove pending
2323
if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug' || (contains(github.event.label.name, 'pending triage') == false && startsWith(github.event.label.name, 'bug:') == true)
24-
uses: actions-cool/issues-helper@v2.2.1
24+
uses: actions-cool/issues-helper@v2.4.3
2525
with:
2626
actions: "remove-labels"
2727
token: ${{ secrets.GITHUB_TOKEN }}
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: need reproduction
3232
if: github.event.label.name == 'need reproduction'
33-
uses: actions-cool/issues-helper@v2.2.1
33+
uses: actions-cool/issues-helper@v2.4.3
3434
with:
3535
actions: "create-comment, remove-labels"
3636
token: ${{ secrets.GITHUB_TOKEN }}

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"ci-docs": "run-s build-vite build-plugin-vue build-docs"
2828
},
2929
"devDependencies": {
30-
"@microsoft/api-extractor": "^7.18.4",
30+
"@microsoft/api-extractor": "^7.18.9",
3131
"@types/fs-extra": "^9.0.12",
3232
"@types/jest": "^27.0.1",
3333
"@types/node": "^15.12.2",
3434
"@types/semver": "^7.3.8",
35-
"@typescript-eslint/eslint-plugin": "^4.28.5",
36-
"@typescript-eslint/parser": "^4.28.5",
35+
"@typescript-eslint/eslint-plugin": "^4.31.1",
36+
"@typescript-eslint/parser": "^4.31.1",
3737
"chalk": "^4.1.2",
3838
"conventional-changelog-cli": "^2.1.1",
3939
"cross-env": "^7.0.3",
@@ -42,21 +42,21 @@
4242
"eslint-plugin-node": "^11.1.0",
4343
"execa": "^5.1.1",
4444
"fs-extra": "^10.0.0",
45-
"jest": "^27.0.6",
46-
"lint-staged": "^11.1.1",
45+
"jest": "^27.2.0",
46+
"lint-staged": "^11.1.2",
4747
"minimist": "^1.2.5",
48-
"node-fetch": "^2.6.1",
48+
"node-fetch": "^2.6.2",
4949
"npm-run-all": "^4.1.5",
50-
"playwright-chromium": "^1.13.1",
51-
"prettier": "2.3.2",
50+
"playwright-chromium": "^1.14.1",
51+
"prettier": "2.4.1",
5252
"prompts": "^2.4.1",
5353
"rimraf": "^3.0.2",
5454
"semver": "^7.3.5",
5555
"sirv": "^1.0.17",
56-
"ts-jest": "^27.0.4",
56+
"ts-jest": "^27.0.5",
5757
"ts-node": "^10.1.0",
5858
"typescript": "~4.3.5",
59-
"vitepress": "^0.17.1",
59+
"vitepress": "^0.18.1",
6060
"yorkie": "^2.0.0"
6161
},
6262
"peerDependencies": {

packages/plugin-legacy/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
},
2727
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#readme",
2828
"dependencies": {
29-
"@babel/standalone": "^7.14.9",
30-
"core-js": "^3.16.0",
29+
"@babel/standalone": "^7.15.7",
30+
"core-js": "^3.17.3",
3131
"magic-string": "^0.25.7",
3232
"regenerator-runtime": "^0.13.9",
33-
"systemjs": "^6.10.2"
33+
"systemjs": "^6.10.3"
3434
},
3535
"peerDependencies": {
3636
"vite": "^2.0.0"

packages/plugin-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
},
3434
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-react#readme",
3535
"dependencies": {
36-
"@babel/core": "^7.14.8",
37-
"@babel/plugin-transform-react-jsx": "^7.14.5",
36+
"@babel/core": "^7.15.5",
37+
"@babel/plugin-transform-react-jsx": "^7.14.9",
3838
"@babel/plugin-transform-react-jsx-development": "^7.14.5",
3939
"@babel/plugin-transform-react-jsx-self": "^7.14.9",
4040
"@babel/plugin-transform-react-jsx-source": "^7.14.5",

packages/plugin-vue-jsx/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
},
2727
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-vue-jsx#readme",
2828
"dependencies": {
29-
"@babel/core": "^7.14.8",
29+
"@babel/core": "^7.15.5",
3030
"@babel/plugin-syntax-import-meta": "^7.10.4",
31-
"@babel/plugin-transform-typescript": "^7.14.6",
31+
"@babel/plugin-transform-typescript": "^7.15.4",
3232
"@rollup/pluginutils": "^4.1.1",
33-
"@vue/babel-plugin-jsx": "^1.0.6",
33+
"@vue/babel-plugin-jsx": "^1.0.7",
3434
"hash-sum": "^2.0.0"
3535
}
3636
}

packages/plugin-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"devDependencies": {
3535
"@rollup/pluginutils": "^4.1.1",
3636
"@types/hash-sum": "^1.0.0",
37-
"@vue/compiler-sfc": "^3.2.6",
37+
"@vue/compiler-sfc": "^3.2.12",
3838
"debug": "^4.3.2",
3939
"hash-sum": "^2.0.0",
4040
"rollup": "^2.38.5",

packages/vite/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
"@types/sass": "^1.16.1",
7777
"@types/stylus": "^0.48.36",
7878
"@types/ws": "^7.4.7",
79-
"@vue/compiler-dom": "^3.1.5",
80-
"acorn": "^8.4.1",
79+
"@vue/compiler-dom": "^3.2.12",
80+
"acorn": "^8.5.0",
8181
"acorn-class-fields": "^1.0.0",
8282
"acorn-static-class-features": "^1.0.0",
8383
"brotli-size": "^4.0.0",
@@ -93,7 +93,7 @@
9393
"debug": "^4.3.2",
9494
"dotenv": "^10.0.0",
9595
"dotenv-expand": "^5.1.0",
96-
"es-module-lexer": "^0.7.1",
96+
"es-module-lexer": "^0.8.0",
9797
"estree-walker": "^2.0.2",
9898
"etag": "^1.8.1",
9999
"execa": "^5.1.1",
@@ -114,12 +114,12 @@
114114
"selfsigned": "^1.10.11",
115115
"sirv": "^1.0.17",
116116
"source-map": "^0.6.1",
117-
"source-map-support": "^0.5.19",
117+
"source-map-support": "^0.5.20",
118118
"strip-ansi": "^6.0.0",
119-
"terser": "^5.7.1",
119+
"terser": "^5.8.0",
120120
"tsconfck": "^1.0.0",
121-
"tslib": "^2.3.0",
121+
"tslib": "^2.3.1",
122122
"types": "link:./types",
123-
"ws": "^7.5.3"
123+
"ws": "^7.5.5"
124124
}
125125
}

0 commit comments

Comments
 (0)