Skip to content

Commit

Permalink
Make library work with scala 2.13
Browse files Browse the repository at this point in the history
* Bump scalaJsVersion to 2.13.8
* Remove fatal warnings
  • Loading branch information
mucaho committed Aug 19, 2022
1 parent 403a568 commit 5f75ecc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
lazy val commonSettings = Seq(
scalaVersion := "2.12.16",
scalaVersion := "2.13.8",
version := "0.4-SNAPSHOT",
organization := "de.b-studios",
crossScalaVersions := Seq("2.12.16", "2.13.6", "3.1.3"),
crossScalaVersions := Seq("2.12.16", "2.13.8", "3.1.3"),
scalacOptions ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-unchecked"
),
scalacOptions ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
Expand Down

0 comments on commit 5f75ecc

Please sign in to comment.