From 9f4062b5f6432c1ddfaea59cd037337a0f433f40 Mon Sep 17 00:00:00 2001 From: dahoud Date: Thu, 30 Oct 2025 23:47:25 +0000 Subject: [PATCH] Fix: Allow minor version updates for @fullcalendar/core to resolve peer dependency conflict The @fullcalendar/core package was pinned to exact version 6.1.4 while other @fullcalendar packages used ^6.1.4, causing npm to install newer versions (6.1.19) that required core@~6.1.19. This change adds the ^ prefix to @fullcalendar/core version to allow minor version updates and resolve the ERESOLVE conflict. Fixes deployment error: ERESOLVE could not resolve peer dependency --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0b95d2f..4bf9ed1 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "lint": "next lint" }, "dependencies": { - "@fullcalendar/core": "6.1.4", + "@fullcalendar/core": "^6.1.4", "@fullcalendar/daygrid": "^6.1.4", "@fullcalendar/interaction": "^6.1.4", "@fullcalendar/react": "^6.1.4",