We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55c0e68 commit 147d0f0Copy full SHA for 147d0f0
build.sbt
@@ -14,16 +14,7 @@ scalaVersion in ThisBuild := crossScalaVersions.value.head
14
val commonSettings = Seq(
15
version := "0.9.8-SNAPSHOT",
16
organization := "org.scala-js",
17
- scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
18
-
19
- // Work around https://github.com/scala-js/scala-js/issues/3612
20
- scalacOptions in (Compile, doc) := {
21
- val prev = (scalacOptions in (Compile, doc)).value
22
- if (scalaJSVersion.startsWith("0.6.") && scalaVersion.value.startsWith("2.13."))
23
- prev.filter(_ != "-Xfatal-warnings")
24
- else
25
- prev
26
- }
+ scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings")
27
)
28
29
normalizedName := "scalajs-dom"
0 commit comments