Skip to content

Commit 94d27c5

Browse files
committed
Disable mima to bootstrap the support for Scala.js 1.0.0-RC1
1 parent 1ce73f5 commit 94d27c5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.sbt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ lazy val commonSettings = Seq(
1414
|See the NOTICE file distributed with this work for
1515
|additional information regarding copyright ownership.
1616
|""".stripMargin)),
17-
scalaModuleMimaPreviousVersion := Some("2.1.1"),
17+
scalaModuleMimaPreviousVersion := {
18+
if(sys.env.get("SCALAJS_VERSION").exists(_.startsWith("1.0.0-M")))
19+
None
20+
else
21+
Some("2.1.1")
22+
}
1823
)
1924

2025
lazy val root = project

0 commit comments

Comments
 (0)