-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate site to Laika #428
Conversation
lazy val unidocs = project | ||
.in(file("unidocs")) | ||
.enablePlugins(TypelevelUnidocPlugin) | ||
.settings( | ||
name := "cats-mtl-docs", | ||
ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(core.jvm, laws.jvm) | ||
) | ||
|
||
lazy val docs = project | ||
.in(file("site")) | ||
.enablePlugins(TypelevelSitePlugin) | ||
.settings( | ||
tlFatalWarnings := false, | ||
laikaConfig ~= (_.withRawContent) | ||
) | ||
.dependsOn(core.jvm) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I forgot to mention, documentation for these plugins is available here:
https://typelevel.org/sbt-typelevel/site.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot, @armanbilge !
Thanks for the review! :) |
Fixes #427. See typelevel/cats#4143 regarding Laika adoption across many Typelevel projects.
Kindly requesting review from @sh0hei, thank you! :)