File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/scala/com/typesafe/sbt/uglify Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ addSbtJsEngine("1.3.5")
17
17
18
18
libraryDependencies ++= Seq (
19
19
" org.webjars.npm" % " uglify-js" % " 3.16.3" ,
20
- " io.monix" %% " monix" % " 2.3.3 "
20
+ " io.monix" %% " monix" % " 3.4.1 "
21
21
)
22
22
23
23
// Customise sbt-dynver's behaviour to make it work with tags which aren't v-prefixed
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ object SbtUglify extends AutoPlugin {
275
275
parallelism = java.lang.Runtime .getRuntime.availableProcessors
276
276
)
277
277
val result = Await .result(
278
- resultObservable.toListL.runAsync (uglifyPool),
278
+ resultObservable.toListL.runToFuture (uglifyPool),
279
279
Duration .Inf // TODO: really? Do we need to run this whole thing async actually since sbt-web 1.5?
280
280
// sbt-web 1.5 removed usage of akka internally and is not async anymore, so we might
281
281
// can get rid of it here too (meaning removing this monix stuff)
You can’t perform that action at this time.
0 commit comments