Select the types of activity you want to include in your feed.
monopam/root: drop unused pkgs argument from collect_external_deps
Now that scan_dirs is derived from the filesystem, the pkgs list is unused. Remove it from the signature instead of silencing it with an underscore prefix.
···391391392392(** {1 Dependency collection} *)
393393394394-let collect_external_deps ~fs ~monorepo _pkgs =
394394+let collect_external_deps ~fs ~monorepo =
395395 (* Iterate the actual subtree directories on disk rather than deriving them
396396 from each package's dev-repo URL via [Package.repo_name]. For a fork, the
397397 dev-repo: field intentionally points at upstream (so opam-repository
···425425 let pkgs =
426426 match packages with Some p -> p | None -> packages_from_fs ~fs ~monorepo
427427 in
428428- let external_deps = collect_external_deps ~fs ~monorepo pkgs in
428428+ let external_deps = collect_external_deps ~fs ~monorepo in
429429 let existing = load_existing ~fs Fpath.(monorepo / "dune-project") in
430430 let ident = identity ~fs existing in
431431 {