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:
@@ -10,7 +10,7 @@
|
|||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fullcalendar/core": "6.1.4",
|
"@fullcalendar/core": "^6.1.4",
|
||||||
"@fullcalendar/daygrid": "^6.1.4",
|
"@fullcalendar/daygrid": "^6.1.4",
|
||||||
"@fullcalendar/interaction": "^6.1.4",
|
"@fullcalendar/interaction": "^6.1.4",
|
||||||
"@fullcalendar/react": "^6.1.4",
|
"@fullcalendar/react": "^6.1.4",
|
||||||
|
|||||||
Reference in New Issue
Block a user