We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae922d commit 63c1f86Copy full SHA for 63c1f86
build.sbt
@@ -14,7 +14,13 @@ 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.3")
+ scalaModuleMimaPreviousVersion := {
18
+ // We need to create a release version first to use MiMa
19
+ if(sys.env.get("SCALAJS_VERSION").exists(_.startsWith("1.0.0")))
20
+ None
21
+ else
22
+ Some("2.1.3")
23
+ }
24
)
25
26
lazy val root = project
0 commit comments