We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce73f5 commit 94d27c5Copy full SHA for 94d27c5
build.sbt
@@ -14,7 +14,12 @@ lazy val commonSettings = Seq(
14
|See the NOTICE file distributed with this work for
15
|additional information regarding copyright ownership.
16
|""".stripMargin)),
17
- scalaModuleMimaPreviousVersion := Some("2.1.1"),
+ scalaModuleMimaPreviousVersion := {
18
+ if(sys.env.get("SCALAJS_VERSION").exists(_.startsWith("1.0.0-M")))
19
+ None
20
+ else
21
+ Some("2.1.1")
22
+ }
23
)
24
25
lazy val root = project
0 commit comments