From 804efaa1450355c55765a1bbc912c3ac37abcef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20=C5=A0est=C3=A1k?= Date: Thu, 21 Sep 2023 21:53:51 +0200 Subject: [PATCH] trigger scalaJSPipeline on server --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 70aa65e..aed7a29 100644 --- a/build.sbt +++ b/build.sbt @@ -101,7 +101,7 @@ lazy val server = (project in file("server")).settings( }, simpleUrlUpdate / includeFilter := "*.css" || "*.js" || "*.html", // triggers scalaJSPipeline when using compile or continuous compilation - compile in Compile <<= (compile in Compile) dependsOn scalaJSPipeline, + Compile / compile := ((Compile / compile) dependsOn scalaJSPipeline).value, Concat.groups := Seq( "main.min.js" -> group(Seq("zbdb-stats-client-jsdeps.min.js", "zbdb-stats-client-opt.js", "zbdb-stats-client-launcher.js")) ),