Skip to content

Commit

Permalink
build: more build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwan Rimorin John Eric authored and Kwan Rimorin John Eric committed Sep 11, 2023
1 parent 23d50ea commit 18b4c1d
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 1 deletion.
70 changes: 70 additions & 0 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-image-optimizer": "^1.1.7",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-svgr": "^3.2.0",
"vite-plugin-turbo-console": "^0.1.0",
"vitest": "^0.34.4"
},
"release": {
Expand Down
6 changes: 5 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import svgr from "vite-plugin-svgr";
import visualizer from "rollup-plugin-visualizer";
import checker from "vite-plugin-checker";
import { ViteImageOptimizer } from "vite-plugin-image-optimizer";
import TurboConsole from "vite-plugin-turbo-console";
import progress from "vite-plugin-progress";
export default defineConfig(() => {
return {
build: {
Expand Down Expand Up @@ -31,7 +33,9 @@ export default defineConfig(() => {
svgr(),
visualizer(),
checker({ typescript: true }),
ViteImageOptimizer()
ViteImageOptimizer(),
TurboConsole(),
progress()
],
test: {
globals: true,
Expand Down

0 comments on commit 18b4c1d

Please sign in to comment.