chore(deps): update all non-major dependencies (main) (#30298)

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-19 10:05:18 +00:00 committed by GitHub
parent dca1a965bf
commit 784a28df97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 427 additions and 396 deletions

View File

@ -255,7 +255,7 @@ jobs:
TEST_PAYLOAD: ${{ matrix.payload }}
SKIP_BUNDLE_SIZE: ${{ github.event_name != 'push' || matrix.env == 'dev' || matrix.builder == 'webpack' || matrix.context == 'default' || matrix.payload == 'js' || runner.os == 'Windows' }}
- uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
- uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
if: github.event_name != 'push' && matrix.env == 'built' && matrix.builder == 'vite' && matrix.context == 'default' && matrix.os == 'ubuntu-latest' && matrix.manifest == 'manifest-on'
with:
token: ${{ secrets.CODECOV_TOKEN }}

View File

@ -95,7 +95,7 @@
"happy-dom": "15.11.7",
"installed-check": "9.3.0",
"jiti": "2.4.2",
"knip": "5.41.0",
"knip": "5.41.1",
"markdownlint-cli": "0.43.0",
"memfs": "~4.14.1",
"nitro": "npm:nitro-nightly@3.0.0-beta-28796231.359af68d",

View File

@ -49,7 +49,7 @@
"untyped": "^1.5.2"
},
"devDependencies": {
"@rspack/core": "1.1.6",
"@rspack/core": "1.1.8",
"@types/semver": "7.5.8",
"nitro": "npm:nitro-nightly@3.0.0-beta-28796231.359af68d",
"unbuild": "3.0.1",

View File

@ -77,7 +77,7 @@
"@vue/shared": "^3.5.13",
"acorn": "8.14.0",
"c12": "^2.0.1",
"chokidar": "^4.0.2",
"chokidar": "^4.0.3",
"compatx": "^0.1.8",
"consola": "^3.2.3",
"cookie-es": "^1.2.2",

View File

@ -107,7 +107,7 @@ function createWatcher () {
})
watcher.on('all', (event, path) => {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw' || path instanceof Error) {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw') {
return
}
nuxt.callHook('builder:watch', event, normalize(path))
@ -139,7 +139,7 @@ function createGranularWatcher () {
const watchers: Record<string, FSWatcher> = {}
watcher.on('all', (event, path) => {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw' || path instanceof Error) {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw') {
return
}
path = normalize(path)
@ -153,7 +153,7 @@ 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] })
pathWatcher.on('all', (event, p) => {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw' || p instanceof Error) {
if (event === 'all' || event === 'ready' || event === 'error' || event === 'raw') {
return
}
nuxt.callHook('builder:watch', event, normalize(p))

View File

@ -32,7 +32,7 @@
"dependencies": {
"@nuxt/friendly-errors-webpack-plugin": "^2.6.0",
"@nuxt/kit": "workspace:*",
"@rspack/core": "^1.1.6",
"@rspack/core": "^1.1.8",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",

View File

@ -17,9 +17,9 @@
"prerender": "pnpm build && jiti ./lib/prerender"
},
"devDependencies": {
"@unocss/reset": "0.65.1",
"@unocss/reset": "0.65.2",
"beasties": "0.2.0",
"html-validate": "8.27.0",
"html-validate": "8.28.0",
"htmlnano": "2.1.1",
"jiti": "2.4.2",
"knitwork": "1.2.0",
@ -29,7 +29,7 @@
"svgo": "3.3.2",
"tinyexec": "0.3.1",
"tinyglobby": "0.2.10",
"unocss": "0.65.1",
"unocss": "0.65.2",
"vite": "6.0.3"
},
"engines": {

View File

@ -74,7 +74,7 @@
},
"devDependencies": {
"@nuxt/schema": "workspace:*",
"@rspack/core": "1.1.6",
"@rspack/core": "1.1.8",
"@types/lodash-es": "4.17.12",
"@types/pify": "5.0.4",
"@types/webpack-bundle-analyzer": "4.7.0",

File diff suppressed because it is too large Load Diff