From 8a4739d50939c6fa6bd9b0090c61ea217fdf1bed Mon Sep 17 00:00:00 2001 From: Chris Stewart Date: Thu, 4 Mar 2021 12:21:21 -0600 Subject: [PATCH] 2021 03 04 fix publish pt2 (#2763) * Fix publishing of scaladocs/website on merge to master by adding new scalajs projects to the list * Add testkitCoreJS * Forgot asyncutils --- build.sbt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 05ca366ce2..79542d2fb1 100644 --- a/build.sbt +++ b/build.sbt @@ -88,6 +88,8 @@ lazy val asyncUtils = crossProject(JVMPlatform, JSPlatform) lazy val asyncUtilsJVM = asyncUtils.jvm +lazy val asyncUtilsJS = asyncUtils.js + lazy val testkitCore = crossProject(JVMPlatform, JSPlatform) .crossType(CrossType.Pure) .in(file("testkit-core")) @@ -115,7 +117,12 @@ lazy val eclairRpc = project .dependsOn(asyncUtilsJVM, bitcoindRpc) lazy val jsProjects: Vector[ProjectReference] = - Vector(cryptoJS, coreJS, cryptoTestJS, coreTestJS, testkitCoreJS) + Vector(asyncUtilsJS, + cryptoJS, + coreJS, + cryptoTestJS, + coreTestJS, + testkitCoreJS) // quoting the val name this way makes it appear as // 'bitcoin-s' in sbt/bloop instead of 'bitcoins'