Skip to content

Commit

Permalink
fix doc on dotty
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasil committed Nov 17, 2020
1 parent 877eb52 commit fe5ed4f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ lazy val sharedSettings = Seq(
else
(ThisBuild / baseDirectory).value / "shared/src/main/scala-2"
),
Compile / doc / sources := {
val old = (Compile / doc / sources).value
if (isDotty.value)
Seq()
else
old
},

libraryDependencies += "io.monix" %%% "minitest" % "2.9.0" % "test",
testFrameworks += new TestFramework("minitest.runner.Framework"),
Expand Down

0 comments on commit fe5ed4f

Please sign in to comment.