Skip to content

Commit

Permalink
fixup! Update minor dependencies and major with no changes needed
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianMitchL committed Apr 18, 2024
1 parent 6a14663 commit d5243f0
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
14 changes: 0 additions & 14 deletions vite.config.js

This file was deleted.

6 changes: 6 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { defineConfig } from "vite";
import { sveltekit } from "@sveltejs/kit/vite";

export default defineConfig({
plugins: [sveltekit()],
});
14 changes: 14 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { defineConfig, mergeConfig } from "vitest/config";
import viteConfig from "./vite.config";

export default mergeConfig(
viteConfig,
defineConfig({
test: {
include: ["src/**/*.{test,spec}.{js,ts}"],
globals: true,
environment: "jsdom",
setupFiles: "./src/setupTests.ts",
},
}),
);

0 comments on commit d5243f0

Please sign in to comment.