Skip to content

Commit

Permalink
Removed unused package
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Oct 24, 2023
1 parent 02adb40 commit 4efda9b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 29 deletions.
17 changes: 0 additions & 17 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
"typescript": "^4.9.3",
"vite": "^4.3.9",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-istanbul": "^5.0.0",
"vitest": "^0.34.6"
}
}
12 changes: 1 addition & 11 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import react from "@vitejs/plugin-react";
import path from "path";
import { defineConfig } from "vite";
import vitePluginChecker from "vite-plugin-checker";
import istanbul from "vite-plugin-istanbul";

import aliases from "./aliases.json";

Expand All @@ -26,16 +25,7 @@ export default defineConfig(({ mode }) => {
}

return {
plugins: [
react(),
vitePluginChecker({ typescript: true }),
istanbul({
include: "src/*",
exclude: ["node_modules", "test/"],
extension: [".js", ".ts", ".tsx"],
requireEnv: true,
}),
],
plugins: [react(), vitePluginChecker({ typescript: true })],
build: {
rollupOptions: {
input: {
Expand Down

0 comments on commit 4efda9b

Please sign in to comment.