diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-02-14 19:04:47 +0000 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-02-14 19:04:47 +0000 |
| commit | 1afaa0401d3dfc46b79cd6d761d81ae8c37d7b07 (patch) | |
| tree | fe5df2a96815f4248e841963ae9a80cbf3763a9e | |
| parent | 3037260a2e26a7b333a2dfff8c6f87641165cae8 (diff) | |
Disable fatal warnings
| -rw-r--r-- | build.sbt | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -45,4 +45,10 @@ lazy val fs2 = crossProject(JVMPlatform, JSPlatform) ) ) -lazy val docs = project.in(file("site")).enablePlugins(TypelevelSitePlugin) +lazy val docs = project + .in(file("site")) + .enablePlugins(TypelevelSitePlugin) + .settings( + tlFatalWarnings := false + ) + .dependsOn(core.jvm, fs2.jvm) |
