mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
fix: vite related dependabot alerts (#15464)
Resolves [14 Dependabot Alerts](https://github.com/twentyhq/twenty/security/dependabot?q=is%3Aopen+package%3Avite+manifest%3Ayarn.lock+has%3Apatch) simultaneously. Vitest 1.4.0 was imported in root package.json, which further imported Vite 5. However, Vitest solved no purpose at the moment since we still rely on Jest for testing. Therefore, removed the package and we can import the latest 4x version when we move from Jest to Vitest. For the rest of the use-cases of Vite, ran `yarn up vite --recursive` for the version used to be greater than 7.0.8. <p align="center"> <img width="403" height="132" alt="image" src="https://github.com/user-attachments/assets/a4ff7a75-2e3f-4dea-9f40-9cfdf07d6252" /> </p>
This commit is contained in:
parent
eba3b0ca88
commit
f367bd6072
3 changed files with 134 additions and 595 deletions
|
|
@ -145,7 +145,6 @@
|
|||
"@typescript-eslint/parser": "^8.39.0",
|
||||
"@typescript-eslint/utils": "^8.39.0",
|
||||
"@vitejs/plugin-react-swc": "3.11.0",
|
||||
"@vitest/ui": "1.4.0",
|
||||
"@yarnpkg/types": "^4.0.0",
|
||||
"chromatic": "^6.18.0",
|
||||
"concurrently": "^8.2.2",
|
||||
|
|
@ -195,8 +194,7 @@
|
|||
"vite-plugin-checker": "^0.10.2",
|
||||
"vite-plugin-cjs-interop": "^2.2.0",
|
||||
"vite-plugin-dts": "3.8.1",
|
||||
"vite-plugin-svgr": "^4.2.0",
|
||||
"vitest": "1.4.0"
|
||||
"vite-plugin-svgr": "^4.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
/// <reference types='vitest' />
|
||||
import react from '@vitejs/plugin-react-swc';
|
||||
import wyw from '@wyw-in-js/vite';
|
||||
import * as path from 'path';
|
||||
|
|
|
|||
Loading…
Reference in a new issue