From d0d005c6d8ef8e145b8673a3f5f7d2af07e3430c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 23 Feb 2024 16:13:09 +0000 Subject: [PATCH 1/2] Update sbt to 1.9.9 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 27430827..04267b14 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.6 +sbt.version=1.9.9 From b39c6837bc2c6c2f1bbeca25c52913f6993775f0 Mon Sep 17 00:00:00 2001 From: johannes karoff Date: Wed, 18 Feb 2026 08:25:55 +0000 Subject: [PATCH 2/2] Fix jsSettings for Scala 3 in build.sbt --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index bb6beb2a..e33f2d10 100644 --- a/build.sbt +++ b/build.sbt @@ -35,7 +35,7 @@ lazy val commonSettings = Seq( lazy val jsSettings = Seq( scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match { - case Some((3, _)) => Seq("-scalajs") + case Some((3, _)) => Seq.empty case _ => Seq.empty }), )