Description
When running dart_frog build, it just copies the pubspec.yaml without any manipulation. Relative paths end up failing. My current workaround is to just have a step that updates relative paths when making new builds.
Steps To Reproduce
Have a pubspec with relative deps:
dependencies:
shared:
path: ../shared
Expected Behavior
dependencies:
shared:
path: ../../shared
Additional Context
I haven't tested this with melos / pub workspaces, but I suspect its also broken as you have to use bootstraping every time you build.
Description
When running
dart_frogbuild, it just copies the pubspec.yaml without any manipulation. Relative paths end up failing. My current workaround is to just have a step that updates relative paths when making new builds.Steps To Reproduce
Have a pubspec with relative deps:
Expected Behavior
Additional Context
I haven't tested this with melos / pub workspaces, but I suspect its also broken as you have to use bootstraping every time you build.