At the moment build.sbt is a little mess. If we want to extend it with additional plugins and functionality, it could be cool to have a more structured build definition and explicit build order.
Rewrite to lazy val root = project...
Separate root / website and maybe tests / linting into lazy val root / docs =;
Separate Laika configuration from build.sbt to another place;
At the moment
build.sbt
is a little mess. If we want to extend it with additional plugins and functionality, it could be cool to have a more structured build definition and explicit build order.lazy val root = project...
lazy val root / docs =
;build.sbt
to another place;