haddock
haddock copied to clipboard
Haskell Documentation Tool
If a module is imported qualified as well as unqualified then docs for re-export appear twice. For example: ``` module Streamly.Internal.Data.Array ( module Streamly.Internal.Data.Array.Type ) where import qualified Streamly.Internal.Data.Array.Type as...
It looks like Haddock does not see documentation attached to constructors of associated type instances, whereas it does see documentation attached to constructors of regular types. Example: ```haskell {-# LANGUAGE...
Part of fixing #18324. https://gitlab.haskell.org/ghc/ghc/-/merge_requests/10140
haddock: internal error: ..Cabal.../share/doc/html/doc-index.json: openBinaryFile: does not exist
Upon executing `cabal v2-haddock --builddir=dist-docs.TTPG5l --haddock-for-hackage --enable-doc` in ghcup-hs repository with ghc-9.2.6 and cabal 3.8.1.0, I get: ``` haddock: internal error: /home/hasufell/.cabal/store/ghc-9.2.6/Cabal-3.6.3.0-694a87f40315650fbba1948b50f641d2839f3ae8b3cdaca746ac1c0a4650d8b2/share/doc/html/doc-index.json: openBinaryFile: does not exist (No such file or...
Apparently, haddock (or the parser, rather) doesn't allow named chunk references in the module header: ``` -- | -- $doc module Foo where -- $doc -- foo ``` ``` Foo.hs:2:1:...
Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.0.4 to 4.2.2. Changelog Sourced from browserify-sign's changelog. v4.2.2 - 2023-10-25 Fixed [Tests] log when openssl doesn't support cipher [#37](https://github.com/crypto-browserify/browserify-sign/issues/37) Commits Only apps should have lockfiles 09a8995...
Bumps [ini](https://github.com/npm/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...
Bumps [set-value](https://github.com/jonschlinkert/set-value) and [union-value](https://github.com/jonschlinkert/union-value). These dependencies needed to be updated together. Updates `set-value` from 2.0.0 to 2.0.1 Commits bb0f038 2.0.1 cb12f14 ensure only valid keys are used See full diff...
Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You...
Could you please add a line to CONTRIBUTING.md, telling how to actually apply a modified haddock to Cabal packages? I tried: ~~~~ mypkg$ cabal-3.10 haddock --with-ghc=/usr/local/ghc/9.4.7/bin/ghc --with-haddock=/tmp/my-custom-haddock-build/haddock ~~~~ But I...