Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/app-bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"@nuxt/test-utils": "latest",
"@types/bun": "1.3.11",
"playwright-core": "1.59.1",
"typescript": "5.9.3"
"typescript": "6.0.2"
}
}
7 changes: 7 additions & 0 deletions examples/app-cucumber/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,11 @@
export default defineNuxtConfig({
devtools: { enabled: true },
compatibilityDate: '2024-04-03',
typescript: {
tsConfig: {
compilerOptions: {
rootDir: '.',
},
},
},
})
2 changes: 1 addition & 1 deletion examples/app-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"playwright-core": "1.59.1",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"typescript": "5.9.3"
"typescript": "6.0.2"
}
}
2 changes: 1 addition & 1 deletion examples/app-vitest-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@vitest/browser-playwright": "4.1.2",
"@vue/test-utils": "2.4.6",
"nuxt": "4.4.2",
"typescript": "5.9.3",
"typescript": "6.0.2",
"vitest": "4.1.2",
"vitest-browser-vue": "2.1.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/app-vitest-full/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"jsdom": "29.0.2",
"listhen": "1.9.1",
"nuxt": "4.4.2",
"typescript": "5.9.3",
"typescript": "6.0.2",
"vitest": "4.1.2",
"vue-tsc": "3.2.6"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/app-vitest-workspace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@nuxt/ui": "4.6.0",
"happy-dom": "20.8.9",
"playwright-core": "1.59.1",
"typescript": "5.9.3",
"typescript": "6.0.2",
"vitest": "4.1.2"
}
}
2 changes: 1 addition & 1 deletion examples/app-vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"happy-dom": "20.8.9",
"playwright-core": "1.59.1",
"tinyglobby": "0.2.16",
"typescript": "5.9.3",
"typescript": "6.0.2",
"vitest": "4.1.2"
}
}
2 changes: 1 addition & 1 deletion examples/nitro-v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"happy-dom": "20.8.9",
"playwright-core": "1.59.1",
"tinyglobby": "0.2.16",
"typescript": "5.9.3",
"typescript": "6.0.2",
"vitest": "4.1.2"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"playwright-core": "1.59.1",
"rollup": "4.60.1",
"semver": "7.7.4",
"typescript": "5.9.3",
"typescript": "6.0.2",
"unbuild": "latest",
"unimport": "6.0.2",
"vite": "8.0.5",
Expand Down
637 changes: 322 additions & 315 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { loadKit } from './utils'
import { setupDevTools } from './devtools'
import { vitestWrapper } from './vitest-wrapper/host'

import pkg from '../package.json' assert { type: 'json' }
import pkg from '../package.json' with { type: 'json' }

export interface NuxtVitestOptions {
startOnBoot?: boolean
Expand Down
Loading