Skip to content

Commit 1f010ca

Browse files
scala-stewardmkurz
authored andcommitted
Update monix to 3.4.1
1 parent 62b82ac commit 1f010ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ addSbtJsEngine("1.3.5")
1717

1818
libraryDependencies ++= Seq(
1919
"org.webjars.npm" % "uglify-js" % "3.16.3",
20-
"io.monix" %% "monix" % "2.3.3"
20+
"io.monix" %% "monix" % "3.4.1"
2121
)
2222

2323
// Customise sbt-dynver's behaviour to make it work with tags which aren't v-prefixed

src/main/scala/com/typesafe/sbt/uglify/SbtUglify.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ object SbtUglify extends AutoPlugin {
275275
parallelism = java.lang.Runtime.getRuntime.availableProcessors
276276
)
277277
val result = Await.result(
278-
resultObservable.toListL.runAsync(uglifyPool),
278+
resultObservable.toListL.runToFuture(uglifyPool),
279279
Duration.Inf // TODO: really? Do we need to run this whole thing async actually since sbt-web 1.5?
280280
// sbt-web 1.5 removed usage of akka internally and is not async anymore, so we might
281281
// can get rid of it here too (meaning removing this monix stuff)

0 commit comments

Comments
 (0)