Skip to content

Commit

Permalink
Merge pull request #3313 from typelevel/update/sbt-scalajs-1.14.0
Browse files Browse the repository at this point in the history
Update sbt-scalajs, scalajs-compiler, ... to 1.14.0
  • Loading branch information
armanbilge authored Sep 26, 2023
2 parents 196995d + f67ef1d commit 2aa7620
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 34 deletions.
3 changes: 1 addition & 2 deletions io/js/src/main/scala/fs2/io/IOException.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
package fs2.io

import fs2.io.file.FileSystemException
import fs2.io.internal.facade.AggregateError
import fs2.io.net.SocketException
import fs2.io.net.SocketTimeoutException
import fs2.io.net.UnknownHostException
Expand All @@ -37,7 +36,7 @@ private class JavaScriptIOException(message: String, cause: js.JavaScriptExcepti

object IOException {
private[io] def unapply(cause: js.JavaScriptException): Option[IOException] = cause match {
case js.JavaScriptException(aggregate: AggregateError) =>
case js.JavaScriptException(aggregate: js.AggregateError) =>
// just use the first one. catching aggregated / CompositeFailures is impractical
unapply(js.JavaScriptException(aggregate.errors(0)))
case InterruptedIOException(ex) => Some(ex)
Expand Down
31 changes: 0 additions & 31 deletions io/js/src/main/scala/fs2/io/internal/facade/AggregateError.scala

This file was deleted.

2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
val sbtTypelevelVersion = "0.5.3"
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion)
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15")
addSbtPlugin("com.armanbilge" % "sbt-scala-native-config-brew-github-actions" % "0.2.0-RC1")
addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.10.0")
Expand Down

0 comments on commit 2aa7620

Please sign in to comment.