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

Commit 2f7889b

Browse files
committed
disable dottydoc
1 parent 5c44938 commit 2f7889b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

build.sbt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ lazy val commonSettings = Seq(
8080
scalaJSStage in Global := FastOptStage,
8181
jsEnv := new org.scalajs.jsenv.nodejs.NodeJSEnv(),
8282
fork := false,
83-
parallelExecution in Test := false
83+
parallelExecution in Test := false,
84+
Compile / doc / sources := {
85+
val old = (Compile / doc / sources).value
86+
if (isDotty.value)
87+
Seq()
88+
else
89+
old
90+
}
8491
)
8592

8693
lazy val algebraSettings = buildSettings ++ commonSettings ++ publishSettings

0 commit comments

Comments
 (0)