Skip to content

Commit

Permalink
Update scalajs to 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Dec 11, 2021
1 parent 68cb3b3 commit 48c700b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,13 @@ lazy val commonJsSettings = Seq(
}
},
parallelExecution := false,
scalacOptions ++= {
if (scalaBinaryVersion.value == "3") {
Nil
} else {
Seq("-P:scalajs:nowarnGlobalExecutionContext")
}
},
scalacOptions += {
val a = (LocalRootProject / baseDirectory).value.toURI.toString
val g = "https://raw.githubusercontent.com/atnos-org/eff/" + hash()
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.1.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10")
Expand Down

0 comments on commit 48c700b

Please sign in to comment.