I'm using package foo
that has "bar": "^1.0.0"
in it's dependencies.
I want to force my package foo
to use the fixed version"bar": "1.0.0"
, because the latest patched version of bar
is broken.
Is there a way to do this ?
Or do I have no choice but to fork foo
library with "bar": "1.0.0"
specified.