we are getting a peer dependency warning when installing this package which we'd like to get resolved:
warning "@antv/layout > dagre-compound@0.0.11" has unmet peer dependency "dagre@^0.8.5".
I guess there are three options:
dagre is not actually a necessary peerDep on dagre-compound. I could not find the source/repo for that package, however, so not sure how to solve this.
dagre is a necessary peerDep. Since dagre-compound is installed by you, you should maybe also install dagre then?
You want to forward the dagre peerDep to consumers. Then it should perhaps be marked in this package's peerDependencies?
Hey all,
we are getting a peer dependency warning when installing this package which we'd like to get resolved:
I guess there are three options:
dagre
is not actually a necessary peerDep ondagre-compound
. I could not find the source/repo for that package, however, so not sure how to solve this.dagre
is a necessary peerDep. Sincedagre-compound
is installed by you, you should maybe also installdagre
then?dagre
peerDep to consumers. Then it should perhaps be marked in this package'speerDependencies
?