From d105ae8f73d2d99b6500599843f306ad1600c1bc Mon Sep 17 00:00:00 2001 From: Vincent Weevers Date: Sun, 24 May 2026 14:32:18 +0200 Subject: [PATCH] Add Vite 8 to peerDependencies To test compatibility (apart from my own specific use case), I temporarily installed `vite@8.0.14` and ran the test suite; it passed. I also had to change `moduleResolution` to `bundler` in `tsconfig.json`. Wasn't sure if you'd want those changes so I only committed the peer dependency. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1fd60ca..aedce2f 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "test:watch": "vitest" }, "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" }, "devDependencies": { "@eslint/js": "^9.38.0",