chore: update vite & vitest dependency versions (#5217)

This commit is contained in:
Matti Nannt
2025-04-04 10:40:21 +09:00
committed by GitHub
parent 1b9d91f1e8
commit f32401afd6
18 changed files with 594 additions and 1914 deletions
+4 -4
View File
@@ -48,13 +48,13 @@
"@formbricks/api": "workspace:*",
"@formbricks/config-typescript": "workspace:*",
"@types/react": "18.3.1",
"@vitest/coverage-v8": "3.0.4",
"@vitest/coverage-v8": "3.1.1",
"react": "18.3.1",
"react-native": "0.74.5",
"terser": "5.37.0",
"vite": "6.0.12",
"vite-plugin-dts": "4.3.0",
"vitest": "3.0.5"
"vite": "6.2.4",
"vite-plugin-dts": "4.5.3",
"vitest": "3.1.1"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=2.1.0",
+2 -6
View File
@@ -1,11 +1,7 @@
import { resolve } from "node:path";
import { type InlineConfig, type UserConfig, defineConfig } from "vite";
import { type UserConfig, defineConfig } from "vite";
import dts from "vite-plugin-dts";
interface VitestConfigExport extends UserConfig {
test: InlineConfig;
}
const config = (): UserConfig => {
return defineConfig({
resolve: {
@@ -45,7 +41,7 @@ const config = (): UserConfig => {
include: ["src/lib/**/*.ts"],
},
},
} as VitestConfigExport);
});
};
export default config;