I was working on preparing my project for 0.14 and noticed that the newtype
package was refusing to compile, complaining about unknown module Safe.Coerce
. A quick look at its GH repo showed that it depends on the safe-coerce
package, but the current package set from the prepare-0.14
branch doesn’t show that dependency, and indeed doesn’t have safe-coerce
itself in packages.json
, though it is present in src/groups/purescript.dhall
.
It would be somewhat reasonable to expect the Safe.Coerce
module to be provided by the compiler, but that also doesn’t seem to be the case, because I’m trying to compile with the most current master
build (commit d056c120
), which reports itself as 0.14.0-rc4
.
Am I missing something or is this an actual oversight? And if so, would a pull request to package-sets
be helpful?