Skip to content

Commit e807bf4

Browse files
Ensure the Scala.js version we pick is used
1 parent 3d9afe0 commit e807bf4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.sc

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ class ScalaJsCliNativeImage(val scalaJsVersion0: String) extends ScalaModule wit
3030
def nativeImageGraalVmJvmId = "graalvm-java17:22.0.0"
3131
def nativeImageName = "scala-js-ld"
3232
def ivyDeps = super.ivyDeps() ++ Seq(
33-
ivy"io.github.alexarchambault.tmp::scalajs-cli:$scalaJsCliVersion",
33+
ivy"io.github.alexarchambault.tmp::scalajs-cli:$scalaJsCliVersion"
34+
// so that this doesn't bump the version we pull ourselves
35+
.exclude(("org.scala-js", "scalajs-linker_2.13")),
3436
ivy"org.scala-js::scalajs-linker:$scalaJsVersion"
3537
)
3638
def nativeImageMainClass = "org.scalajs.cli.Scalajsld"

0 commit comments

Comments
 (0)