We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My cabal.project has:
cabal.project
packages: ./. ../reanimate-svg
implict-hie produces:
implict-hie
cradle: cabal: - path: "../reanimate-svg/src" component: "lib:reanimate-svg" - path: "../reanimate-svg/test" component: "reanimate-svg:test:w3c-spec"
When I'd expect:
cradle: cabal: - path: "./app/Main.hs" component: "svgone:exe:svgone" - path: "./src" component: "lib:svgone" - path: "../reanimate-svg/src" component: "lib:reanimate-svg" - path: "../reanimate-svg/test" component: "reanimate-svg:test:w3c-spec"
Which is actually what I get if I change ./. to .. But the latter isn't actually valid syntax - cabal gives:
./.
.
cabal: Error parsing project file /Users/gthomas/personal/svgone/cabal.project:1: Parse of field 'packages' failed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My
cabal.project
has:implict-hie
produces:When I'd expect:
Which is actually what I get if I change
./.
to.
. But the latter isn't actually valid syntax - cabal gives:The text was updated successfully, but these errors were encountered: