Currently spago init creates this structure:
├── packages.dhall
├── spago.dhall
├── src
│ └── Main.purs
└── test
└── Main.purs
and cat spago.dhall:
{-
Welcome to a Spago project!
You can edit this file as you like.
-}
{ name =
"my-project"
, dependencies =
[ "effect", "console", "psci-support" ]
, packages =
./packages.dhall
, sources =
[ "src/**/*.purs", "test/**/*.purs" ]
}
I'd suggest that in any way there should be two spago.dhall files generated: One for the tests and the other one for the actual project
Currently
spagoinit creates this structure:and
cat spago.dhall:I'd suggest that in any way there should be two
spago.dhallfiles generated: One for the tests and the other one for the actual project