Skip to content

Commit

Permalink
Filter out -Wconf option in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdziuban committed Feb 22, 2024
1 parent 426118c commit 677f1e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ lazy val example = project.in(file("example"))
lazy val docs = project.in(file("composefree-docs"))
.settings(commonSettings ++ Seq(
mdocOut := file("."),
scalacOptions -= "-Xfatal-warnings",
scalacOptions ~= (_.filterNot(o => o == "-Xfatal-warnings" || o.startsWith("-Wconf:msg=package"))),
gitRelease := {}
))
.dependsOn(core, future)
Expand Down

0 comments on commit 677f1e3

Please sign in to comment.