The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix topkg distrib.

+6 -1
+6 -1
vendor/opam/cmdliner/pkg/pkg.ml
··· 6 6 (* This is only here for `topkg distrib`. Remove once 7 7 we switch to `b0 -- .release` *) 8 8 9 + let distrib = 10 + (* The default removes Makefile *) 11 + let exclude_paths () = Ok [".git";".gitignore";".gitattributes";"_build"] in 12 + Pkg.distrib ~exclude_paths () 13 + 9 14 let () = 10 15 let opams = [Pkg.opam_file "cmdliner.opam"] in 11 - Pkg.describe "cmdliner" ~opams @@ fun c -> 16 + Pkg.describe "cmdliner" ~distrib ~opams @@ fun c -> 12 17 Ok [ Pkg.mllib ~api:["Cmdliner"] "src/cmdliner.mllib" ]