Skip to content

Commit deb8940

Browse files
committed
workaround for scala/scala3#12588
1 parent 342c638 commit deb8940

File tree

124 files changed

+359
-360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+359
-360
lines changed

scalajs/src/main/scala/org/scalablytyped/converter/internal/scalajs/Versions.scala

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import io.circe013.{Decoder, Encoder}
66
object Versions {
77
val sbtVersion = "1.5.2"
88

9-
private val StableVersion = "(\\d+).(\\d+).(\\d+)".r
10-
private val Milestone = "(.+)-bin-(.+)".r
9+
// this accepts any nightly or milestone with the same binversion as a major release. good enough for now
10+
private val Version = "(\\d+).(\\d+).(\\d+).*".r
1111

1212
case class Scala(scalaVersion: String) {
1313
val is3 = scalaVersion.startsWith("3.")
@@ -28,10 +28,9 @@ object Versions {
2828
else None
2929

3030
val binVersion: String = scalaVersion match {
31-
case StableVersion("3", _, _) => s"3"
32-
case StableVersion("2", minor, _) => s"2.$minor"
33-
case Milestone(bin, _) => bin
34-
case other => other
31+
case Version("3", _, _) => s"3"
32+
case Version("2", minor, _) => s"2.$minor"
33+
case other => other
3534
}
3635

3736
val compilerBridge: Option[Dep.Java] =
@@ -47,14 +46,14 @@ object Versions {
4746

4847
val Scala212 = Scala("2.12.13")
4948
val Scala213 = Scala("2.13.5")
50-
val Scala3 = Scala("3.0.0")
49+
val Scala3 = Scala("3.0.1-RC2")
5150

5251
case class ScalaJs(scalaJsVersion: String) {
5352
val scalaJsBinVersion: String =
5453
scalaJsVersion match {
55-
case StableVersion("1", _, _) => "1"
56-
case StableVersion("0", "6", _) => "0.6"
57-
case other => other
54+
case Version("1", _, _) => "1"
55+
case Version("0", "6", _) => "0.6"
56+
case other => other
5857
}
5958

6059
val scalaJsOrganization = "org.scala-js"

tests/antd/check/a/antd/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "antd"
3-
version := "4.3.1-8262db"
4-
scalaVersion := "3.0.0"
3+
version := "4.3.1-55cfa6"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/antd/check/r/rc-field-form/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "rc-field-form"
3-
version := "1.4.4-d6d6a9"
4-
scalaVersion := "3.0.0"
3+
version := "1.4.4-d247bd"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "lodash"
3-
version := "4.14-8661a0"
4-
scalaVersion := "3.0.0"
3+
version := "4.14-ff2d87"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-dfe82b")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-9e630f")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/augment-module/check/l/lodash_dot_add/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "lodash_dot_add"
3-
version := "3.7-5cd836"
4-
scalaVersion := "3.0.0"
3+
version := "3.7-fc16fa"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/augment-module/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-dfe82b"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-9e630f"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/aws-sdk/check/a/aws-sdk/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "aws-sdk"
3-
version := "2.247.1-9d6e4d"
4-
scalaVersion := "3.0.0"
3+
version := "2.247.1-ada389"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/babylon/check/b/babylon/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "babylon"
3-
version := "0.0-unknown-ed2441"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-9de2ca"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/babylon/check/n/node/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "node"
3-
version := "0.0-unknown-90dab5"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-45a55a"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/bigint/check/b/bigint/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "bigint"
3-
version := "v5.5.3-8f709a"
4-
scalaVersion := "3.0.0"
3+
version := "v5.5.3-6bb296"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-5465ef")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-a46006")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/bigint/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-5465ef"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-a46006"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "chart_dot_js"
3-
version := "0.0-unknown-d775d6"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-8314cf"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-9e2bd7")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-7c7c1b")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/chart.js/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-9e2bd7"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-7c7c1b"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/cldrjs/check/c/cldrjs/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "cldrjs"
3-
version := "0.4.4-835b4a"
4-
scalaVersion := "3.0.0"
3+
version := "0.4.4-124e85"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-7c1e2a")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-3ca3e0")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/cldrjs/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-7c1e2a"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-3ca3e0"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
organization := "org.scalablytyped"
22
name := "commander"
3-
version := "2.15.1-58ecd3"
4-
scalaVersion := "3.0.0"
3+
version := "2.15.1-08cd18"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "node" % "0.0-unknown-1cdf89",
9-
"org.scalablytyped" %%% "std" % "0.0-unknown-cc59a4")
8+
"org.scalablytyped" %%% "node" % "0.0-unknown-62c300",
9+
"org.scalablytyped" %%% "std" % "0.0-unknown-544337")
1010
publishArtifact in packageDoc := false
1111
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1212
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/commander/check/n/node/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "node"
3-
version := "0.0-unknown-1cdf89"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-62c300"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/commander/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-cc59a4"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-544337"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/const-enum/check/c/const-enum/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "const-enum"
3-
version := "0.0-unknown-594abb"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-6d36de"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "create-error"
3-
version := "0.3.1-08ecd7"
4-
scalaVersion := "3.0.0"
3+
version := "0.3.1-35347e"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-2689f2")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-95364d")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/create-error/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-2689f2"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-95364d"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "defaulted-tparams"
3-
version := "0.0-unknown-8e1b1d"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-12d055"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-15893b")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-885ae4")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/defaulted-tparams/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-15893b"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-885ae4"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/documentation/check/d/documentation/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "documentation"
3-
version := "0.0-unknown-f82e22"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-711b87"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/echarts/check/e/echarts/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "echarts"
3-
version := "0.0-unknown-c4f12c"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-7fa333"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "elasticsearch-js"
3-
version := "0.0-unknown-587370"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-f75490"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-8e234d")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-b0cb4d")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/elasticsearch-js/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-8e234d"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-b0cb4d"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
organization := "org.scalablytyped"
22
name := "electron"
3-
version := "2.0.0-a15341"
4-
scalaVersion := "3.0.0"
3+
version := "2.0.0-d0b348"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "node" % "0.0-unknown-c16927",
9-
"org.scalablytyped" %%% "std" % "0.0-unknown-683bf2")
8+
"org.scalablytyped" %%% "node" % "0.0-unknown-662fc3",
9+
"org.scalablytyped" %%% "std" % "0.0-unknown-4b4c49")
1010
publishArtifact in packageDoc := false
1111
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1212
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/electron/check/n/node/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
organization := "org.scalablytyped"
22
name := "node"
3-
version := "0.0-unknown-c16927"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-662fc3"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2",
8-
"org.scalablytyped" %%% "std" % "0.0-unknown-683bf2")
8+
"org.scalablytyped" %%% "std" % "0.0-unknown-4b4c49")
99
publishArtifact in packageDoc := false
1010
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:existentials", "-no-indent")
1111
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

tests/electron/check/s/std/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "std"
3-
version := "0.0-unknown-683bf2"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-4b4c49"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

tests/expand-type-parameters/check/e/expand-type-parameters/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
organization := "org.scalablytyped"
22
name := "expand-type-parameters"
3-
version := "0.0-unknown-f085eb"
4-
scalaVersion := "3.0.0"
3+
version := "0.0-unknown-7d2348"
4+
scalaVersion := "3.0.1-RC2"
55
enablePlugins(ScalaJSPlugin)
66
libraryDependencies ++= Seq(
77
"com.olvind" %%% "scalablytyped-runtime" % "2.4.2")

0 commit comments

Comments
 (0)