Skip to content

Commit 1ea4577

Browse files
authored
chore: update major deps (#8572)
1 parent eec5f43 commit 1ea4577

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@types/micromatch": "^4.0.2",
5151
"@types/mime": "^2.0.3",
5252
"@types/minimist": "^1.2.2",
53-
"@types/node": "^17.0.31",
53+
"@types/node": "^17.0.42",
5454
"@types/prompts": "^2.4.0",
5555
"@types/resolve": "^1.20.2",
5656
"@types/sass": "~1.43.1",
@@ -61,26 +61,26 @@
6161
"@typescript-eslint/parser": "^5.27.1",
6262
"conventional-changelog-cli": "^2.2.2",
6363
"cross-env": "^7.0.3",
64-
"esbuild": "^0.14.38",
64+
"esbuild": "^0.14.43",
6565
"eslint": "^8.17.0",
6666
"eslint-define-config": "^1.5.1",
6767
"eslint-plugin-import": "^2.26.0",
6868
"eslint-plugin-node": "^11.1.0",
6969
"esno": "^0.16.3",
70-
"execa": "^5.1.1",
70+
"execa": "^6.1.0",
7171
"fs-extra": "^10.1.0",
7272
"kill-port": "^1.6.1",
7373
"lint-staged": "^13.0.1",
7474
"minimist": "^1.2.6",
75-
"node-fetch": "^2.6.7",
75+
"node-fetch": "^3.2.6",
7676
"npm-run-all": "^4.1.5",
7777
"picocolors": "^1.0.0",
7878
"playwright-chromium": "^1.22.2",
7979
"pnpm": "^7.2.1",
8080
"prettier": "2.6.2",
8181
"prompts": "^2.4.2",
8282
"rimraf": "^3.0.2",
83-
"rollup": "^2.72.1",
83+
"rollup": "^2.75.6",
8484
"semver": "^7.3.7",
8585
"simple-git-hooks": "^2.8.0",
8686
"sirv": "^2.0.2",

packages/plugin-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-react#readme",
4141
"dependencies": {
42-
"@babel/core": "^7.18.2",
42+
"@babel/core": "^7.18.5",
4343
"@babel/plugin-transform-react-jsx": "^7.17.12",
4444
"@babel/plugin-transform-react-jsx-development": "^7.16.7",
4545
"@babel/plugin-transform-react-jsx-self": "^7.17.12",

playground/ssr-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"dependencies": {
1616
"react": "^17.0.2",
1717
"react-dom": "^17.0.2",
18-
"react-router": "^5.3.1",
19-
"react-router-dom": "^5.3.1"
18+
"react-router": "^5.3.3",
19+
"react-router-dom": "^5.3.3"
2020
},
2121
"devDependencies": {
2222
"@vitejs/plugin-react": "workspace:*",

playground/test-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ export async function killProcess(
182182
): Promise<void> {
183183
if (isWindows) {
184184
try {
185-
const { default: execa } = await import('execa')
186-
execa.commandSync(`taskkill /pid ${serverProcess.pid} /T /F`)
185+
const { execaCommandSync } = await import('execa')
186+
execaCommandSync(`taskkill /pid ${serverProcess.pid} /T /F`)
187187
} catch (e) {
188188
console.error('failed to taskkill:', e)
189189
}

scripts/releaseUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { existsSync, readdirSync, writeFileSync } from 'fs'
55
import path from 'path'
66
import colors from 'picocolors'
77
import type { Options as ExecaOptions, ExecaReturnValue } from 'execa'
8-
import execa from 'execa'
8+
import { execa } from 'execa'
99
import type { ReleaseType } from 'semver'
1010
import semver from 'semver'
1111
import fs from 'fs-extra'

0 commit comments

Comments
 (0)