Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Dec 14, 2023
1 parent 2ffd789 commit 6e6f61d
Show file tree
Hide file tree
Showing 4 changed files with 181 additions and 202 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
"typescript": "5.3.3",
"vercel": "32.7.2",
"vite": "5.0.8",
"vite-plugin-reiconify": "1.1.2",
"vite-plugin-css-injected-by-js": "3.3.0",
"vite-plugin-svgr": "4.2.0",
"vitest": "1.0.4"
},
"packageManager": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions packages/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@waline/admin",
"version": "0.25.3",
"description": "management system for waline",
"type": "module",
"keywords": [
"waline",
"valine",
Expand Down Expand Up @@ -61,7 +62,6 @@
"react-redux": "9.0.4",
"react-router-dom": "6.21.0",
"redux": "5.0.0",
"typescript": "5.3.3",
"vite-plugin-css-injected-by-js": "^3.3.0"
"typescript": "5.3.3"
}
}
10 changes: 2 additions & 8 deletions packages/admin/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { resolve } from 'node:path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import cssInjectedByJsPlugin from 'vite-plugin-css-injected-by-js';
// @ts-ignore
import reiconify from 'vite-plugin-reiconify';
import svgr from 'vite-plugin-svgr';

import { version } from './package.json';

Expand All @@ -17,12 +16,7 @@ export default defineConfig({
),
},

plugins: [
react(),
// eslint-disable-next-line
reiconify(),
cssInjectedByJsPlugin(),
],
plugins: [react(), svgr({ libraryDir: undefined }), cssInjectedByJsPlugin()],

build: {
lib: {
Expand Down
Loading

0 comments on commit 6e6f61d

Please sign in to comment.