From 902484988eb8f27dbb479c9fc68cbb2658dbfc9f Mon Sep 17 00:00:00 2001 From: Mac Malone Date: Sat, 23 Aug 2025 17:52:15 -0400 Subject: [PATCH] fix: include `Lake.Load` in core build (#10087) This PR adds `Lake.Load` to core's Lake configuration to ensure it is built. With the module system port, it was no longer transitively imported. --- src/lakefile.toml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lakefile.toml.in b/src/lakefile.toml.in index b9cbd1b25c..0f07226384 100644 --- a/src/lakefile.toml.in +++ b/src/lakefile.toml.in @@ -63,7 +63,7 @@ globs = [ # Lake API imported by configuration files "Lake", # API only imported by `LakeMain` and the `lake` CLI - "Lake.CLI", + "Lake.CLI", "Lake.Load", ] libName = "${LAKE_LIB_PREFIX}Lake" defaultFacets = ["static", "static.export"]