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
$ stack --version Version 1.9.3, Git revision 40cf7b37526b86d1676da82167ea8758a854953b (6211 commits) x86_64 hpack-0.31.1 $ stack build /opt/devel/haskell/hpack-convert/package.yaml: Error while parsing $.library.dependencies - expected Array, Object, or String, encountered Null
To solve the issue, an empty dependencies within library should be removed.
dependencies
library
$ git diff package.yaml diff --git a/package.yaml b/package.yaml index fa859b4..757d696 100644 --- a/package.yaml +++ b/package.yaml @@ -30,7 +30,6 @@ dependencies: library: source-dirs: src - dependencies: exposed-modules: - Hpack.Convert
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To solve the issue, an empty
dependencies
withinlibrary
should be removed.The text was updated successfully, but these errors were encountered: