I have a few dependencies in devDependencies from within the monorepo.
When I specify those packages in fireDependencies, they correctly get added to the dependencies list in package.json - however the original dependencies inside of devDependencies also remain. This causes the build to fail as it cannot find the dependencies in the monorepo structure.
Is it possible to:
add the relative path dependencies in the devDependencies location OR
remove the dependencies in devDependencies when adding the relative dependencies to dependencies
I have a few dependencies in
devDependencies
from within the monorepo.When I specify those packages in
fireDependencies
, they correctly get added to thedependencies
list inpackage.json
- however the original dependencies inside ofdevDependencies
also remain. This causes the build to fail as it cannot find the dependencies in the monorepo structure.Is it possible to:
devDependencies
location ORdevDependencies
when adding the relative dependencies todependencies
Thanks!