Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Commit

Permalink
disable dottydoc
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrh committed Dec 12, 2020
1 parent 5c44938 commit 2f7889b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,14 @@ lazy val commonSettings = Seq(
scalaJSStage in Global := FastOptStage,
jsEnv := new org.scalajs.jsenv.nodejs.NodeJSEnv(),
fork := false,
parallelExecution in Test := false
parallelExecution in Test := false,
Compile / doc / sources := {
val old = (Compile / doc / sources).value
if (isDotty.value)
Seq()
else
old
}
)

lazy val algebraSettings = buildSettings ++ commonSettings ++ publishSettings
Expand Down

0 comments on commit 2f7889b

Please sign in to comment.