Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scala2/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "itto-csv"
version := "2.1.2"
organization := "com.github.gekomad"
scalaVersion := "2.13.16"
scalaVersion := "2.13.18"
//scalaVersion := "2.12.20"
val fs2Version = "3.11.0"
scalacOptions ++= {
Expand Down
7 changes: 3 additions & 4 deletions scala2_js/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ lazy val scala2Js = project
.in(file("."))
.enablePlugins(ScalaJSPlugin)
.settings(
version := "2.1.2",
scalaVersion := "2.13.16",
//scalaVersion := "2.12.20",
version := "2.1.2",
scalaVersion := "2.13.18",
// scalaVersion := "2.12.20",
organization := "com.github.gekomad",
scalaJSUseMainModuleInitializer := false,
scalaJSLinkerConfig ~= (_.withESFeatures(_.withESVersion(ESVersion.ES2018))),
scalaJSLinkerConfig ~= {
_.withModuleKind(ModuleKind.ESModule)
.withModuleSplitStyle(ModuleSplitStyle.SmallModulesFor(List("scala2Js")))
},

scalacOptions ++= {
if (scalaVersion.value.startsWith("2.12")) {
Seq("-Ypartial-unification", "-Xfatal-warnings")
Expand Down