Skip to content

Commit 7bc40cc

Browse files
committed
chore: bump major dev dependencies
1 parent 743b9d4 commit 7bc40cc

File tree

7 files changed

+801
-631
lines changed

7 files changed

+801
-631
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@tsconfig/node20": "^20.1.5",
3737
"@tsconfig/strictest": "^2.0.5",
3838
"@types/babel__code-frame": "^7.0.6",
39-
"@types/node": "^18.19.87",
39+
"@types/node": "^20.17.32",
4040
"execa": "^9.5.2",
4141
"fast-json-stable-stringify": "^2.1.0",
4242
"knip": "^5.53.0",
@@ -47,13 +47,13 @@
4747
"rimraf": "^5.0.10",
4848
"simple-git-hooks": "^2.13.0",
4949
"sort-deep-object-arrays": "^1.1.2",
50-
"sort-package-json": "^2.15.1",
50+
"sort-package-json": "^3.1.0",
5151
"strip-ansi": "^7.1.0",
5252
"tiny-invariant": "^1.3.3",
5353
"tinyglobby": "^0.2.13",
5454
"typescript": "^5.8.3",
5555
"vite": "^6.1.6",
5656
"vitest": "^3.1.2"
5757
},
58-
"packageManager": "pnpm@9.15.9"
58+
"packageManager": "pnpm@10.10.0"
5959
}

packages/vite-plugin-checker/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
"vscode-uri": "^3.1.0"
4444
},
4545
"devDependencies": {
46-
"@types/eslint": "^7.29.0",
47-
"@types/picomatch": "^3.0.2",
46+
"@types/eslint": "^8.56.12",
47+
"@types/picomatch": "^4.0.0",
4848
"@vue/language-core": "~2.2.10",
4949
"meow": "^13.2.0",
5050
"stylelint": "^16.19.1",

playground/backend-integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@types/react": "^19.1.2",
1818
"@types/react-dom": "^19.1.3",
1919
"@vitejs/plugin-react": "^4.4.1",
20-
"express": "^4.21.2",
20+
"express": "^5.1.0",
2121
"http-proxy-middleware": "^3.0.5",
2222
"typescript": "^5.8.3",
2323
"vite": "^6.1.6",

playground/backend-integration/server.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
import fs from 'fs'
2-
import path from 'path'
3-
import { fileURLToPath } from 'url'
1+
import fs from 'node:fs'
2+
import path from 'node:path'
3+
import { fileURLToPath } from 'node:url'
44
import express from 'express'
5-
import { promisify } from 'util'
65
import { createProxyMiddleware } from 'http-proxy-middleware'
76
import { createServer as createViteServer } from 'vite'
87
const __dirname = path.dirname(fileURLToPath(import.meta.url))
@@ -14,7 +13,7 @@ export async function createServer() {
1413
const app = express()
1514
const viteDevServer = await createViteServer({ root: rootDir })
1615

17-
let html = fs.readFileSync(path.resolve(__dirname, 'index.html'), 'utf-8')
16+
let html = await fs.promises.readFile(path.resolve(__dirname, 'index.html'), 'utf-8')
1817

1918
app.get('/', async (req, res) => {
2019
html = html.replace(
@@ -35,7 +34,7 @@ export async function createServer() {
3534
3635
`
3736
)
38-
res.status(200).set({ 'Content-Type': 'text/html' }).end(html)
37+
res.status(200).set({ 'Content-Type': 'text/html' }).send(html)
3938
})
4039

4140
app.use('/', createProxyMiddleware({ target: 'http://127.0.0.1:5173', changeOrigin: true }))

playground/eslint-flat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"serve": "vite preview"
1111
},
1212
"devDependencies": {
13-
"eslint": "^8.57.1",
13+
"eslint": "^9.26.0",
1414
"vite": "^6.1.6",
1515
"vite-plugin-checker": "workspace:*"
1616
}

playground/stylelint-default/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"devDependencies": {
1313
"meow": "^13.2.0",
1414
"stylelint": "^16.19.1",
15-
"stylelint-config-standard": "^37.0.0",
15+
"stylelint-config-standard": "^38.0.0",
1616
"typescript": "^5.8.3",
1717
"vite": "^6.1.6",
1818
"vite-plugin-checker": "workspace:*"

0 commit comments

Comments
 (0)