···11# @hey-api/nuxt
2233+## 0.2.1
44+55+### Patch Changes
66+77+- fix: update peer dependencies to be more permissible ([#2574](https://github.com/hey-api/openapi-ts/pull/2574)) ([`996021e`](https://github.com/hey-api/openapi-ts/commit/996021e4ce306ce762dfd55f2a7ec8099be4f24c)) by [@mrlubos](https://github.com/mrlubos)
88+39## 0.2.0
410511### Minor Changes
···11-import { fileURLToPath } from 'node:url';
22-33-import { createVitestConfig } from '@config/vite-base';
44-55-export default createVitestConfig(
66- fileURLToPath(new URL('./', import.meta.url)),
77- {
88- test: {
99- // Dont run tests in parallel. This is to ensure the test server can start up.
1010- // And that the port was not previously taken.
1111- fileParallelism: false,
1212- include: ['test/e2e/**/*.test.ts'],
1313- },
1414- },
1515-);
+7
packages/openapi-ts-tests/main/vitest.config.ts
···11+import { fileURLToPath } from 'node:url';
22+33+import { createVitestConfig } from '@config/vite-base';
44+55+export default createVitestConfig(
66+ fileURLToPath(new URL('./', import.meta.url)),
77+);