fozzie-components
fozzie-components copied to clipboard
F-Mega-Modal(v7.4.1) has a DevDependency on F-Button(v4.5.0)
We recently encountered while updating the Fozzie components that when updating F-Button to v5.0.0, the F-Mega-Modal still has a Dev Dependency on F-Button 4.5.0 causing errors for conflict or inconsistency in the package versions specified in the project's dependencies
.
As a work around we have manually overridden the version of the DevDependency in package.json
for F-Button as follows:
"dependencies": {
"@justeat/f-mega-modal": "7.4.1",
"@justeat/f-button": "5.0.0"
},
"overrides": {
"@justeat/f-mega-modal": {
"@justeat/f-button": "5.0.0"
}
}
Just wanted to bring to notice so it can be updated. Meanwhile, other teams can apply this overrides
as mentioned above