We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d224b4 commit 5ca832aCopy full SHA for 5ca832a
build.sbt
@@ -40,6 +40,10 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
40
41
scalacOptions in Test += "-Xxml:coalescing",
42
43
+ // don't run Dottydoc, it errors and isn't needed anyway.
44
+ // but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish
45
+ Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value),
46
+
47
scalaModuleMimaPreviousVersion := {
48
if (isDotty.value) None // No such release yet
49
// else if (System.getenv("SCALAJS_VERSION") == "1.0.1") None
0 commit comments