Skip to content

Commit bc06ffd

Browse files
author
Pask
committed
Attempt to add support scala 3 in scalanative for core and ws
1 parent 063317e commit bc06ffd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ lazy val core = (projectMatrix in file("core"))
109109
settings = commonJsSettings ++ browserChromeTestSettings
110110
)
111111
.nativePlatform(
112-
scalaVersions = scala2,
112+
scalaVersions = scala2 ++ scala3,
113113
settings = commonNativeSettings
114114
)
115115

@@ -127,7 +127,7 @@ lazy val ws = (projectMatrix in file("ws"))
127127
settings = commonJsSettings ++ browserChromeTestSettings
128128
)
129129
.nativePlatform(
130-
scalaVersions = scala2,
130+
scalaVersions = scala2 ++ scala3,
131131
settings = commonNativeSettings
132132
)
133133
.dependsOn(core)

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "1.1.1"
22
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0")
3-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.2")
3+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.3-RC1")
44
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.0")
55

66
val sbtSoftwareMillVersion = "2.0.9"

0 commit comments

Comments
 (0)