fix: include all of Lake.Util in core build (#10090)

This PR adds the modules in `Lake.Util` to core's Lake configuration to
ensure all utilities are built. With the module system port, they were
no longer all transitively imported.

Specifically, `Lake.Util.Lock` is unused because Lake does not currently
use a lock file for the build.
This commit is contained in:
Mac Malone 2025-08-23 18:55:39 -04:00 committed by GitHub
parent 902484988e
commit a93e315e72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,6 +64,8 @@ globs = [
"Lake",
# API only imported by `LakeMain` and the `lake` CLI
"Lake.CLI", "Lake.Load",
# Additional utilities which may not be imported
"Lake.Util.+",
]
libName = "${LAKE_LIB_PREFIX}Lake"
defaultFacets = ["static", "static.export"]