mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
chore(deps): update all non-major dependencies (main) (#18952)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
This commit is contained in:
parent
59a1f7bae0
commit
636e494543
@ -37,7 +37,8 @@
|
||||
"nuxt3": "workspace:nuxt@*",
|
||||
"unbuild": "^1.1.1",
|
||||
"vite": "^4.1.1",
|
||||
"vue": "3.2.47"
|
||||
"vue": "3.2.47",
|
||||
"magic-string": "^0.29.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@actions/core": "^1.10.0",
|
||||
@ -55,7 +56,7 @@
|
||||
"case-police": "^0.5.11",
|
||||
"changelogen": "^0.4.1",
|
||||
"crawler": "^1.4.0",
|
||||
"eslint": "^8.33.0",
|
||||
"eslint": "^8.34.0",
|
||||
"eslint-plugin-jsdoc": "^40.0.0",
|
||||
"execa": "^7.0.0",
|
||||
"expect-type": "^0.15.0",
|
||||
@ -73,7 +74,7 @@
|
||||
"ufo": "^1.0.1",
|
||||
"unbuild": "^1.1.1",
|
||||
"vite": "^4.1.1",
|
||||
"vitest": "^0.28.4",
|
||||
"vitest": "^0.28.5",
|
||||
"vue-tsc": "^1.0.24"
|
||||
},
|
||||
"packageManager": "pnpm@7.27.0",
|
||||
|
@ -64,7 +64,7 @@
|
||||
"hookable": "^5.4.2",
|
||||
"jiti": "^1.17.0",
|
||||
"knitwork": "^1.0.0",
|
||||
"magic-string": "^0.27.0",
|
||||
"magic-string": "^0.29.0",
|
||||
"mlly": "^1.1.0",
|
||||
"nitropack": "^2.2.1",
|
||||
"nuxi": "3.2.0",
|
||||
@ -79,7 +79,7 @@
|
||||
"unenv": "^1.1.1",
|
||||
"unhead": "^1.0.21",
|
||||
"unimport": "^2.2.4",
|
||||
"unplugin": "^1.0.1",
|
||||
"unplugin": "^1.1.0",
|
||||
"untyped": "^1.2.2",
|
||||
"vue": "^3.2.47",
|
||||
"vue-bundle-renderer": "^1.0.1",
|
||||
|
@ -26,7 +26,7 @@
|
||||
"devDependencies": {
|
||||
"playwright": "^1.30.0",
|
||||
"unbuild": "latest",
|
||||
"vitest": "^0.28.4"
|
||||
"vitest": "^0.28.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.2.47"
|
||||
|
@ -27,7 +27,7 @@
|
||||
"chokidar": "^3.5.3",
|
||||
"cssnano": "^5.1.14",
|
||||
"defu": "^6.1.2",
|
||||
"esbuild": "^0.17.7",
|
||||
"esbuild": "^0.17.8",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
"estree-walker": "^3.0.3",
|
||||
"externality": "^1.0.0",
|
||||
@ -35,7 +35,7 @@
|
||||
"get-port-please": "^3.0.1",
|
||||
"h3": "^1.4.0",
|
||||
"knitwork": "^1.0.0",
|
||||
"magic-string": "^0.27.0",
|
||||
"magic-string": "^0.29.0",
|
||||
"mlly": "^1.1.0",
|
||||
"ohash": "^1.0.0",
|
||||
"pathe": "^1.1.0",
|
||||
@ -47,9 +47,9 @@
|
||||
"rollup": "^3.15.0",
|
||||
"rollup-plugin-visualizer": "^5.9.0",
|
||||
"ufo": "^1.0.1",
|
||||
"unplugin": "^1.0.1",
|
||||
"unplugin": "^1.1.0",
|
||||
"vite": "~4.1.1",
|
||||
"vite-node": "^0.28.4",
|
||||
"vite-node": "^0.28.5",
|
||||
"vite-plugin-checker": "^0.5.5",
|
||||
"vue-bundle-renderer": "^1.0.1"
|
||||
},
|
||||
|
@ -2,6 +2,7 @@ import { pathToFileURL } from 'node:url'
|
||||
import MagicString from 'magic-string'
|
||||
import { parseQuery, parseURL } from 'ufo'
|
||||
import type { Plugin } from 'vite'
|
||||
import type { SourceMap } from 'rollup'
|
||||
|
||||
export interface RuntimePathsOptions {
|
||||
sourcemap?: boolean
|
||||
@ -34,7 +35,7 @@ export function runtimePathsPlugin (options: RuntimePathsOptions): Plugin {
|
||||
return {
|
||||
code: s.toString(),
|
||||
map: options.sourcemap
|
||||
? s.generateMap({ source: id, includeContent: true })
|
||||
? s.generateMap({ source: id, includeContent: true }) as SourceMap
|
||||
: undefined
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,7 @@
|
||||
"css-loader": "^6.7.3",
|
||||
"css-minimizer-webpack-plugin": "^4.2.2",
|
||||
"cssnano": "^5.1.14",
|
||||
"esbuild-loader": "^3.0.0",
|
||||
"esbuild-loader": "^3.0.1",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
"estree-walker": "^3.0.3",
|
||||
"file-loader": "^6.2.0",
|
||||
@ -31,7 +31,7 @@
|
||||
"fs-extra": "^11.1.0",
|
||||
"hash-sum": "^2.0.0",
|
||||
"lodash-es": "^4.17.21",
|
||||
"magic-string": "^0.27.0",
|
||||
"magic-string": "^0.29.0",
|
||||
"memfs": "^3.4.13",
|
||||
"mini-css-extract-plugin": "^2.7.2",
|
||||
"mlly": "^1.1.0",
|
||||
@ -45,12 +45,12 @@
|
||||
"style-resources-loader": "^1.5.0",
|
||||
"time-fix-plugin": "^2.0.7",
|
||||
"ufo": "^1.0.1",
|
||||
"unplugin": "^1.0.1",
|
||||
"unplugin": "^1.1.0",
|
||||
"url-loader": "^4.1.1",
|
||||
"vue-bundle-renderer": "^1.0.1",
|
||||
"vue-loader": "^17.0.1",
|
||||
"webpack": "^5.75.0",
|
||||
"webpack-bundle-analyzer": "^4.7.0",
|
||||
"webpack-bundle-analyzer": "^4.8.0",
|
||||
"webpack-dev-middleware": "^6.0.1",
|
||||
"webpack-hot-middleware": "^2.25.3",
|
||||
"webpack-virtual-modules": "^0.5.0",
|
||||
|
532
pnpm-lock.yaml
532
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user