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
Having multiple bazel packages, I try to obtain an united documentation, like stack produces it:
I tried to declare a dedicated bazel packages, in doc/BUILD:
doc/BUILD
package(default_visibility = ["//visibility:public"]) load("@io_tweag_rules_haskell//haskell:haskell.bzl", "haskell_doc") haskell_doc( name = "doc", deps = [ "//app/numerod", "//app/numerop", "//numero", "//numero-clovis", "//numero-operations", "//numero-logger", "//numero-pretty", "//process-calculus", ] )
But documentation is still splited per bazel packages:
Dans each index only contains its only content:
This issue might be somehow related to #232, plus the fact that the unique doc package dosen't gather the documentation in Haddock, like stack do.
doc
Thanks.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Having multiple bazel packages, I try to obtain an united documentation, like stack produces it:
I tried to declare a dedicated bazel packages, in
doc/BUILD
:But documentation is still splited per bazel packages:
Dans each index only contains its only content:

This issue might be somehow related to #232, plus the fact that the unique
doc
package dosen't gather the documentation in Haddock, like stack do.Thanks.
The text was updated successfully, but these errors were encountered: