mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
chore(deps): update all non-major dependencies (3.x) (#28824)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
parent
9983e83dae
commit
67f58395f8
13
package.json
13
package.json
@ -42,9 +42,12 @@
|
||||
"@types/node": "20.16.4",
|
||||
"magic-string": "^0.30.11",
|
||||
"nuxt": "workspace:*",
|
||||
"rollup": "^4.21.2",
|
||||
"postcss": "8.4.45",
|
||||
"rollup": "4.21.2",
|
||||
"typescript": "5.5.4",
|
||||
"ufo": "1.5.4",
|
||||
"vite": "5.4.3",
|
||||
"vue": "3.5.0"
|
||||
"vue": "3.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "9.9.1",
|
||||
@ -65,7 +68,7 @@
|
||||
"case-police": "0.7.0",
|
||||
"changelogen": "0.5.5",
|
||||
"consola": "3.2.3",
|
||||
"cssnano": "7.0.5",
|
||||
"cssnano": "7.0.6",
|
||||
"destr": "2.0.3",
|
||||
"devalue": "5.0.0",
|
||||
"eslint": "9.9.1",
|
||||
@ -93,9 +96,9 @@
|
||||
"ufo": "1.5.4",
|
||||
"vitest": "2.0.5",
|
||||
"vitest-environment-nuxt": "1.0.1",
|
||||
"vue": "3.5.0",
|
||||
"vue": "3.5.1",
|
||||
"vue-router": "4.4.3",
|
||||
"vue-tsc": "2.1.4"
|
||||
"vue-tsc": "2.1.6"
|
||||
},
|
||||
"packageManager": "pnpm@9.9.0",
|
||||
"engines": {
|
||||
|
@ -68,7 +68,7 @@
|
||||
"@unhead/dom": "^1.10.4",
|
||||
"@unhead/ssr": "^1.10.4",
|
||||
"@unhead/vue": "^1.10.4",
|
||||
"@vue/shared": "^3.5.0",
|
||||
"@vue/shared": "^3.5.1",
|
||||
"acorn": "8.12.1",
|
||||
"c12": "^1.11.2",
|
||||
"chokidar": "^3.6.0",
|
||||
@ -113,22 +113,22 @@
|
||||
"unctx": "^2.3.1",
|
||||
"unenv": "^1.10.0",
|
||||
"unimport": "^3.11.1",
|
||||
"unplugin": "^1.12.3",
|
||||
"unplugin": "^1.13.1",
|
||||
"unplugin-vue-router": "^0.10.7",
|
||||
"unstorage": "^1.10.2",
|
||||
"unstorage": "^1.11.1",
|
||||
"untyped": "^1.4.2",
|
||||
"vue": "^3.5.0",
|
||||
"vue": "^3.5.1",
|
||||
"vue-bundle-renderer": "^2.1.0",
|
||||
"vue-devtools-stub": "^0.1.0",
|
||||
"vue-router": "^4.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nuxt/scripts": "0.8.2",
|
||||
"@nuxt/scripts": "0.8.3",
|
||||
"@nuxt/ui-templates": "1.3.4",
|
||||
"@parcel/watcher": "2.4.1",
|
||||
"@types/estree": "1.0.5",
|
||||
"@vitejs/plugin-vue": "5.1.3",
|
||||
"@vue/compiler-sfc": "3.5.0",
|
||||
"@vue/compiler-sfc": "3.5.1",
|
||||
"unbuild": "latest",
|
||||
"vite": "5.4.3",
|
||||
"vitest": "2.0.5"
|
||||
|
@ -1,10 +1,10 @@
|
||||
import { defineDriver } from 'unstorage'
|
||||
import fsDriver from 'unstorage/drivers/fs-lite'
|
||||
import fsDriver, { type FSStorageOptions } from 'unstorage/drivers/fs-lite'
|
||||
import lruCache from 'unstorage/drivers/lru-cache'
|
||||
|
||||
const normalizeFsKey = (item: string) => item.replaceAll(':', '_')
|
||||
|
||||
export default defineDriver((opts: { base: string }) => {
|
||||
export default defineDriver((opts: FSStorageOptions) => {
|
||||
const fs = fsDriver({ base: opts.base })
|
||||
const lru = lruCache({ max: 1000 })
|
||||
|
||||
@ -12,8 +12,8 @@ export default defineDriver((opts: { base: string }) => {
|
||||
...fs, // fall back to file system - only the bottom three methods are used in renderer
|
||||
async setItem (key, value, opts) {
|
||||
await Promise.all([
|
||||
fs.setItem(normalizeFsKey(key), value, opts),
|
||||
lru.setItem(key, value, opts),
|
||||
fs.setItem?.(normalizeFsKey(key), value, opts),
|
||||
lru.setItem?.(key, value, opts),
|
||||
])
|
||||
},
|
||||
async hasItem (key, opts) {
|
||||
|
@ -42,9 +42,9 @@
|
||||
"@unhead/schema": "1.10.4",
|
||||
"@vitejs/plugin-vue": "5.1.3",
|
||||
"@vitejs/plugin-vue-jsx": "4.0.1",
|
||||
"@vue/compiler-core": "3.5.0",
|
||||
"@vue/compiler-sfc": "3.5.0",
|
||||
"@vue/language-core": "2.1.4",
|
||||
"@vue/compiler-core": "3.5.1",
|
||||
"@vue/compiler-sfc": "3.5.1",
|
||||
"@vue/language-core": "2.1.6",
|
||||
"c12": "1.11.2",
|
||||
"esbuild-loader": "4.2.2",
|
||||
"h3": "1.12.0",
|
||||
@ -55,7 +55,7 @@
|
||||
"unctx": "2.3.1",
|
||||
"unenv": "1.10.0",
|
||||
"vite": "5.4.3",
|
||||
"vue": "3.5.0",
|
||||
"vue": "3.5.1",
|
||||
"vue-bundle-renderer": "2.1.0",
|
||||
"vue-loader": "17.4.2",
|
||||
"vue-router": "4.4.3",
|
||||
|
@ -29,7 +29,7 @@
|
||||
"@types/estree": "1.0.5",
|
||||
"rollup": "4.21.2",
|
||||
"unbuild": "latest",
|
||||
"vue": "3.5.0"
|
||||
"vue": "3.5.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/kit": "workspace:*",
|
||||
@ -39,7 +39,7 @@
|
||||
"autoprefixer": "^10.4.20",
|
||||
"clear": "^0.1.0",
|
||||
"consola": "^3.2.3",
|
||||
"cssnano": "^7.0.5",
|
||||
"cssnano": "^7.0.6",
|
||||
"defu": "^6.1.4",
|
||||
"esbuild": "^0.23.1",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
@ -54,13 +54,13 @@
|
||||
"pathe": "^1.1.2",
|
||||
"perfect-debounce": "^1.0.0",
|
||||
"pkg-types": "^1.2.0",
|
||||
"postcss": "^8.4.44",
|
||||
"postcss": "^8.4.45",
|
||||
"rollup-plugin-visualizer": "^5.12.0",
|
||||
"std-env": "^3.7.0",
|
||||
"strip-literal": "^2.1.0",
|
||||
"ufo": "^1.5.4",
|
||||
"unenv": "^1.10.0",
|
||||
"unplugin": "^1.12.3",
|
||||
"unplugin": "^1.13.1",
|
||||
"vite": "^5.4.3",
|
||||
"vite-node": "^2.0.5",
|
||||
"vite-plugin-checker": "^0.7.2",
|
||||
|
@ -30,7 +30,7 @@
|
||||
"autoprefixer": "^10.4.20",
|
||||
"css-loader": "^7.1.2",
|
||||
"css-minimizer-webpack-plugin": "^7.0.0",
|
||||
"cssnano": "^7.0.5",
|
||||
"cssnano": "^7.0.6",
|
||||
"defu": "^6.1.4",
|
||||
"esbuild-loader": "^4.2.2",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
@ -47,7 +47,7 @@
|
||||
"ohash": "^1.1.3",
|
||||
"pathe": "^1.1.2",
|
||||
"pify": "^6.1.0",
|
||||
"postcss": "^8.4.44",
|
||||
"postcss": "^8.4.45",
|
||||
"postcss-import": "^16.1.0",
|
||||
"postcss-import-resolver": "^2.0.0",
|
||||
"postcss-loader": "^8.1.1",
|
||||
@ -57,7 +57,7 @@
|
||||
"time-fix-plugin": "^2.0.7",
|
||||
"ufo": "^1.5.4",
|
||||
"unenv": "^1.10.0",
|
||||
"unplugin": "^1.12.3",
|
||||
"unplugin": "^1.13.1",
|
||||
"url-loader": "^4.1.1",
|
||||
"vue-bundle-renderer": "^2.1.0",
|
||||
"vue-loader": "^17.4.2",
|
||||
@ -76,7 +76,7 @@
|
||||
"@types/webpack-bundle-analyzer": "4.7.0",
|
||||
"@types/webpack-hot-middleware": "2.25.9",
|
||||
"unbuild": "latest",
|
||||
"vue": "3.5.0"
|
||||
"vue": "3.5.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.3.4"
|
||||
|
1166
pnpm-lock.yaml
1166
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -32,7 +32,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
|
||||
const serverDir = join(rootDir, '.output/server')
|
||||
|
||||
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
|
||||
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"210k"`)
|
||||
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"211k"`)
|
||||
|
||||
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
|
||||
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1378k"`)
|
||||
|
Loading…
Reference in New Issue
Block a user