chore(deps): update all non-major dependencies (3.x) (#30281)

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:
renovate[bot] 2024-12-18 20:03:22 +00:00 committed by GitHub
parent f220314a59
commit cde98d7d21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 247 additions and 256 deletions

View File

@ -60,7 +60,7 @@ jobs:
run: pnpm test:attw
- name: Cache dist
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
retention-days: 3
name: dist

View File

@ -59,7 +59,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
if: github.repository == 'nuxt/nuxt' && success()
with:
name: SARIF file

View File

@ -89,8 +89,8 @@
"h3": "1.13.0",
"happy-dom": "15.11.7",
"installed-check": "9.3.0",
"jiti": "2.4.1",
"knip": "5.40.0",
"jiti": "2.4.2",
"knip": "5.41.0",
"markdownlint-cli": "0.43.0",
"memfs": "~4.14.1",
"nitropack": "2.10.4",

View File

@ -34,7 +34,7 @@
"destr": "^2.0.3",
"globby": "^14.0.2",
"ignore": "^6.0.2",
"jiti": "^2.4.1",
"jiti": "^2.4.2",
"klona": "^2.0.6",
"knitwork": "^1.2.0",
"mlly": "^1.7.3",
@ -44,7 +44,7 @@
"scule": "^1.3.0",
"semver": "^7.6.3",
"ufo": "^1.5.4",
"unctx": "^2.4.0",
"unctx": "^2.4.1",
"unimport": "^3.14.5",
"untyped": "^1.5.2"
},

View File

@ -82,7 +82,7 @@
"@vue/shared": "^3.5.13",
"acorn": "8.14.0",
"c12": "^2.0.1",
"chokidar": "^4.0.1",
"chokidar": "^4.0.2",
"compatx": "^0.1.8",
"consola": "^3.2.3",
"cookie-es": "^1.2.2",
@ -98,7 +98,7 @@
"hookable": "^5.5.3",
"ignore": "^6.0.2",
"impound": "^0.2.0",
"jiti": "^2.4.1",
"jiti": "^2.4.2",
"klona": "^2.0.6",
"knitwork": "^1.2.0",
"magic-string": "^0.30.17",
@ -121,7 +121,7 @@
"ufo": "^1.5.4",
"ultrahtml": "^1.5.3",
"uncrypto": "^0.1.3",
"unctx": "^2.4.0",
"unctx": "^2.4.1",
"unenv": "^1.10.0",
"unhead": "^1.11.14",
"unimport": "^3.14.5",

View File

@ -107,7 +107,12 @@ function createWatcher () {
})
// TODO: consider moving to emit absolute path in 3.8 or 4.0
watcher.on('all', (event, path) => nuxt.callHook('builder:watch', event, nuxt.options.experimental.relativeWatchPaths ? normalize(relative(nuxt.options.srcDir, path)) : normalize(path)))
watcher.on('all', (event, path) => {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw' || path instanceof Error) {
return
}
nuxt.callHook('builder:watch', event, nuxt.options.experimental.relativeWatchPaths ? normalize(relative(nuxt.options.srcDir, path)) : normalize(path))
})
nuxt.hook('close', () => watcher?.close())
}
@ -135,6 +140,9 @@ function createGranularWatcher () {
const watchers: Record<string, FSWatcher> = {}
watcher.on('all', (event, path) => {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw' || path instanceof Error) {
return
}
path = normalize(path)
if (!pending) {
// TODO: consider moving to emit absolute path in 3.8 or 4.0
@ -147,7 +155,12 @@ function createGranularWatcher () {
if (event === 'addDir' && path !== dir && !ignoredDirs.has(path) && !pathsToWatch.includes(path) && !(path in watchers) && !isIgnored(path)) {
const pathWatcher = watchers[path] = chokidarWatch(path, { ...nuxt.options.watchers.chokidar, ignored: [isIgnored] })
// TODO: consider moving to emit absolute path in 3.8 or 4.0
pathWatcher.on('all', (event, p) => nuxt.callHook('builder:watch', event, nuxt.options.experimental.relativeWatchPaths ? normalize(relative(nuxt.options.srcDir, p)) : normalize(p)))
pathWatcher.on('all', (event, p) => {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw' || p instanceof Error) {
return
}
nuxt.callHook('builder:watch', event, nuxt.options.experimental.relativeWatchPaths ? normalize(relative(nuxt.options.srcDir, p)) : normalize(p))
})
nuxt.hook('close', () => watchers[path]?.close())
}
})

View File

@ -44,7 +44,7 @@
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globby": "^14.0.2",
"h3": "^1.13.0",
"jiti": "^2.4.1",
"jiti": "^2.4.2",
"knitwork": "^1.2.0",
"lodash-es": "4.17.21",
"magic-string": "^0.30.17",

View File

@ -51,7 +51,7 @@
"ofetch": "1.4.1",
"sass-loader": "16.0.4",
"unbuild": "latest",
"unctx": "2.4.0",
"unctx": "2.4.1",
"vite": "6.0.3",
"vue": "3.5.13",
"vue-bundle-renderer": "2.1.1",

View File

@ -22,7 +22,7 @@
"beasties": "0.2.0",
"html-validate": "8.27.0",
"htmlnano": "2.1.1",
"jiti": "2.4.1",
"jiti": "2.4.2",
"knitwork": "1.2.0",
"lodash-es": "4.17.21",
"pathe": "1.1.2",

View File

@ -46,7 +46,7 @@
"externality": "^1.0.2",
"get-port-please": "^3.1.2",
"h3": "^1.13.0",
"jiti": "^2.4.1",
"jiti": "^2.4.2",
"knitwork": "^1.2.0",
"magic-string": "^0.30.17",
"mlly": "^1.7.3",

View File

@ -42,7 +42,7 @@
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"h3": "^1.13.0",
"jiti": "^2.4.1",
"jiti": "^2.4.2",
"lodash-es": "4.17.21",
"magic-string": "^0.30.17",
"memfs": "^4.14.1",

File diff suppressed because it is too large Load Diff