Skip to content

Commit

Permalink
Merge pull request #43 from scala-steward/update/monix-3.4.1
Browse files Browse the repository at this point in the history
Update monix to 3.4.1
  • Loading branch information
mkurz authored Jan 15, 2024
2 parents 62b82ac + 1f010ca commit 1cc1226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ addSbtJsEngine("1.3.5")

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

// Customise sbt-dynver's behaviour to make it work with tags which aren't v-prefixed
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/typesafe/sbt/uglify/SbtUglify.scala
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ object SbtUglify extends AutoPlugin {
parallelism = java.lang.Runtime.getRuntime.availableProcessors
)
val result = Await.result(
resultObservable.toListL.runAsync(uglifyPool),
resultObservable.toListL.runToFuture(uglifyPool),
Duration.Inf // TODO: really? Do we need to run this whole thing async actually since sbt-web 1.5?
// sbt-web 1.5 removed usage of akka internally and is not async anymore, so we might
// can get rid of it here too (meaning removing this monix stuff)
Expand Down

0 comments on commit 1cc1226

Please sign in to comment.