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

* chore(deps): update all non-major dependencies

* upda lockfile

* test: disable bridge test

* increase windows test timeout

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
This commit is contained in:
renovate[bot] 2022-04-12 20:36:39 +02:00 committed by GitHub
parent ce36e2e211
commit aa26c6cdb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 331 additions and 685 deletions

View File

@ -48,7 +48,7 @@
"case-police": "^0.5.3", "case-police": "^0.5.3",
"esbuild": "^0.14.36", "esbuild": "^0.14.36",
"eslint": "^8.13.0", "eslint": "^8.13.0",
"eslint-plugin-jsdoc": "^39.1.1", "eslint-plugin-jsdoc": "^39.2.0",
"execa": "^6.1.0", "execa": "^6.1.0",
"expect-type": "^0.13.0", "expect-type": "^0.13.0",
"globby": "^13.1.1", "globby": "^13.1.1",
@ -62,7 +62,7 @@
"unbuild": "^0.7.2", "unbuild": "^0.7.2",
"vitest": "^0.9.3", "vitest": "^0.9.3",
"vue-router": "^4.0.14", "vue-router": "^4.0.14",
"vue-tsc": "^0.34.5" "vue-tsc": "^0.34.6"
}, },
"engines": { "engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0" "node": "^14.16.0 || ^16.11.0 || ^17.0.0"

View File

@ -44,7 +44,7 @@
"magic-string": "^0.26.1", "magic-string": "^0.26.1",
"mlly": "^0.5.1", "mlly": "^0.5.1",
"murmurhash-es": "^0.1.1", "murmurhash-es": "^0.1.1",
"nitropack": "^0.2.4", "nitropack": "^0.2.6",
"node-fetch": "^3.2.3", "node-fetch": "^3.2.3",
"nuxi": "3.0.0", "nuxi": "3.0.0",
"ohash": "^0.1.0", "ohash": "^0.1.0",

View File

@ -50,7 +50,7 @@
"knitwork": "^0.1.1", "knitwork": "^0.1.1",
"magic-string": "^0.26.1", "magic-string": "^0.26.1",
"mlly": "^0.5.1", "mlly": "^0.5.1",
"nitropack": "^0.2.4", "nitropack": "^0.2.6",
"nuxi": "3.0.0", "nuxi": "3.0.0",
"ohash": "^0.1.0", "ohash": "^0.1.0",
"ohmyfetch": "^0.4.15", "ohmyfetch": "^0.4.15",

View File

@ -22,7 +22,7 @@
"ohmyfetch": "^0.4.15" "ohmyfetch": "^0.4.15"
}, },
"devDependencies": { "devDependencies": {
"playwright": "^1.20.2", "playwright": "^1.21.0",
"unbuild": "latest", "unbuild": "latest",
"vitest": "^0.9.3" "vitest": "^0.9.3"
}, },

View File

@ -2,7 +2,8 @@ import { fileURLToPath } from 'url'
import { describe, expect, it } from 'vitest' import { describe, expect, it } from 'vitest'
import { setup, $fetch, fetch, startServer } from '@nuxt/test-utils' import { setup, $fetch, fetch, startServer } from '@nuxt/test-utils'
describe('fixtures:bridge', async () => { // Moving to nuxt/bridge soon
describe.skip('fixtures:bridge', async () => {
await setup({ await setup({
rootDir: fileURLToPath(new URL('./fixtures/bridge', import.meta.url)), rootDir: fileURLToPath(new URL('./fixtures/bridge', import.meta.url)),
server: true server: true

View File

@ -1,5 +1,6 @@
import { resolve } from 'path' import { resolve } from 'path'
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import { isWindows } from 'std-env'
export default defineConfig({ export default defineConfig({
alias: { alias: {
@ -10,6 +11,6 @@ export default defineConfig({
tsconfigRaw: '{}' tsconfigRaw: '{}'
}, },
test: { test: {
testTimeout: 10000 testTimeout: isWindows ? 60000 : 10000
} }
}) })

1000
yarn.lock

File diff suppressed because it is too large Load Diff