Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions webui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ This change log covers only the frontend library (webui) of Open VSX.
- Token display in generate-token dialog now uses a masked input with show/hide toggle and copy button ([#1966](https://github.com/eclipse-openvsx/openvsx/pull/1966)
- Migrate admin dashboard to use `@tanstack/react-query` ([#1917](https://github.com/eclipse-openvsx/openvsx/pull/1917)
- Replace formatting from `stylistic` with `prettier` ([#1916](https://github.com/eclipse-openvsx/openvsx/pull/1916))
- Upgrade to vite 8+ and disable manual chunks for bundling ([#1989](https://github.com/eclipse-openvsx/openvsx/pull/1989))

### Fixed

Expand Down
6 changes: 3 additions & 3 deletions webui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"@types/react-transition-group": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.1.0",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-parser-plain": "^0.1.1",
Expand All @@ -112,8 +112,8 @@
"rollup-plugin-visualizer": "^7.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.0",
"vite": "^7.3.0",
"vitest": "^3.0.0"
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"scripts": {
"clean": "rimraf lib && rimraf dist",
Expand Down
7 changes: 1 addition & 6 deletions webui/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,7 @@ export default defineConfig(() => ({
output: {
entryFileNames: 'bundle-[hash].js',
assetFileNames: '[name]-[hash][extname]',
chunkFileNames: 'chunk-[name]-[hash].js',
manualChunks: {
lodash: ['lodash'],
material: ['@mui/material'],
'mui-x': ['@mui/x-charts', '@mui/x-data-grid', '@mui/x-date-pickers']
}
chunkFileNames: 'chunk-[name]-[hash].js'
}
}
}
Expand Down
Loading