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
This commit is contained in:
dahoud
2025-10-30 23:47:25 +00:00
parent e15d717a40
commit 9f4062b5f6

View File

@@ -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",