Skip to content

Commit 2aa7620

Browse files
authored
Merge pull request #3313 from typelevel/update/sbt-scalajs-1.14.0
Update sbt-scalajs, scalajs-compiler, ... to 1.14.0
2 parents 196995d + f67ef1d commit 2aa7620

File tree

3 files changed

+2
-34
lines changed

3 files changed

+2
-34
lines changed

io/js/src/main/scala/fs2/io/IOException.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
package fs2.io
2323

2424
import fs2.io.file.FileSystemException
25-
import fs2.io.internal.facade.AggregateError
2625
import fs2.io.net.SocketException
2726
import fs2.io.net.SocketTimeoutException
2827
import fs2.io.net.UnknownHostException
@@ -37,7 +36,7 @@ private class JavaScriptIOException(message: String, cause: js.JavaScriptExcepti
3736

3837
object IOException {
3938
private[io] def unapply(cause: js.JavaScriptException): Option[IOException] = cause match {
40-
case js.JavaScriptException(aggregate: AggregateError) =>
39+
case js.JavaScriptException(aggregate: js.AggregateError) =>
4140
// just use the first one. catching aggregated / CompositeFailures is impractical
4241
unapply(js.JavaScriptException(aggregate.errors(0)))
4342
case InterruptedIOException(ex) => Some(ex)

io/js/src/main/scala/fs2/io/internal/facade/AggregateError.scala

Lines changed: 0 additions & 31 deletions
This file was deleted.

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
val sbtTypelevelVersion = "0.5.3"
22
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
33
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion)
4-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
4+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
55
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15")
66
addSbtPlugin("com.armanbilge" % "sbt-scala-native-config-brew-github-actions" % "0.2.0-RC1")
77
addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.10.0")

0 commit comments

Comments
 (0)