Build and return a :class:`LeanLibrary` for this project.
(self)
| 132 | run_command(["lake", "build"], cwd=str(self._dir)) |
| 133 | |
| 134 | def library(self) -> LeanLibrary: |
| 135 | """Build and return a :class:`LeanLibrary` for this project.""" |
| 136 | return LeanLibrary.from_lake(self._dir, "Managed", build=True) |
| 137 | |
| 138 | def kernel(self) -> Kernel: |
| 139 | """Build and return a :class:`Kernel` backed by this project.""" |