Closed
Description
I have a path-io
specified as a local package with extra-dep
as true in a package called path-test
:
packages:
- '.'
- location: ../../github/path-io
extra-dep: true
path-io
has a stack.yaml
of its own and when I make changes in that package I first build and test it using that stack.yaml. After that if I come back to the path-test
package and do a stack build then it does not rebuild. If I do a stack clean in the path-io
package (i.e. using path-io's stack-yaml) and then do a stack build
in path-test
then it rebuilds fine.
I am not sure why the path-test
setup gets impacted by the path-io
setup or whether it should.