mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
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:
parent
ce36e2e211
commit
aa26c6cdb1
@ -48,7 +48,7 @@
|
||||
"case-police": "^0.5.3",
|
||||
"esbuild": "^0.14.36",
|
||||
"eslint": "^8.13.0",
|
||||
"eslint-plugin-jsdoc": "^39.1.1",
|
||||
"eslint-plugin-jsdoc": "^39.2.0",
|
||||
"execa": "^6.1.0",
|
||||
"expect-type": "^0.13.0",
|
||||
"globby": "^13.1.1",
|
||||
@ -62,7 +62,7 @@
|
||||
"unbuild": "^0.7.2",
|
||||
"vitest": "^0.9.3",
|
||||
"vue-router": "^4.0.14",
|
||||
"vue-tsc": "^0.34.5"
|
||||
"vue-tsc": "^0.34.6"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
|
||||
|
@ -44,7 +44,7 @@
|
||||
"magic-string": "^0.26.1",
|
||||
"mlly": "^0.5.1",
|
||||
"murmurhash-es": "^0.1.1",
|
||||
"nitropack": "^0.2.4",
|
||||
"nitropack": "^0.2.6",
|
||||
"node-fetch": "^3.2.3",
|
||||
"nuxi": "3.0.0",
|
||||
"ohash": "^0.1.0",
|
||||
|
@ -50,7 +50,7 @@
|
||||
"knitwork": "^0.1.1",
|
||||
"magic-string": "^0.26.1",
|
||||
"mlly": "^0.5.1",
|
||||
"nitropack": "^0.2.4",
|
||||
"nitropack": "^0.2.6",
|
||||
"nuxi": "3.0.0",
|
||||
"ohash": "^0.1.0",
|
||||
"ohmyfetch": "^0.4.15",
|
||||
|
@ -22,7 +22,7 @@
|
||||
"ohmyfetch": "^0.4.15"
|
||||
},
|
||||
"devDependencies": {
|
||||
"playwright": "^1.20.2",
|
||||
"playwright": "^1.21.0",
|
||||
"unbuild": "latest",
|
||||
"vitest": "^0.9.3"
|
||||
},
|
||||
|
@ -2,7 +2,8 @@ import { fileURLToPath } from 'url'
|
||||
import { describe, expect, it } from 'vitest'
|
||||
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({
|
||||
rootDir: fileURLToPath(new URL('./fixtures/bridge', import.meta.url)),
|
||||
server: true
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { resolve } from 'path'
|
||||
import { defineConfig } from 'vite'
|
||||
import { isWindows } from 'std-env'
|
||||
|
||||
export default defineConfig({
|
||||
alias: {
|
||||
@ -10,6 +11,6 @@ export default defineConfig({
|
||||
tsconfigRaw: '{}'
|
||||
},
|
||||
test: {
|
||||
testTimeout: 10000
|
||||
testTimeout: isWindows ? 60000 : 10000
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user