Add new JS projects to list in build.sbt (#2761)

* Fix publishing of scaladocs/website on merge to master by adding new scalajs projects to the list

* Add testkitCoreJS
This commit is contained in:
Chris Stewart 2021-03-04 10:01:14 -06:00 committed by GitHub
parent e59057483f
commit 6b4812848b

View file

@ -100,6 +100,8 @@ lazy val testkitCore = crossProject(JVMPlatform, JSPlatform)
lazy val testkitCoreJVM = testkitCore.jvm
lazy val testkitCoreJS = testkitCore.js
lazy val bitcoindRpc = project
.in(file("bitcoind-rpc"))
.settings(CommonSettings.prodSettings: _*)
@ -112,7 +114,8 @@ lazy val eclairRpc = project
.in(file("eclair-rpc"))
.dependsOn(asyncUtilsJVM, bitcoindRpc)
val jsProjects: Vector[ProjectReference] = Vector(cryptoJS)
lazy val jsProjects: Vector[ProjectReference] =
Vector(cryptoJS, coreJS, cryptoTestJS, coreTestJS, testkitCoreJS)
// quoting the val name this way makes it appear as
// 'bitcoin-s' in sbt/bloop instead of 'bitcoins'
@ -157,6 +160,7 @@ lazy val `bitcoin-s` = project
appCommons,
appCommonsTest,
testkitCoreJVM,
testkitCoreJS,
testkit,
zmq,
oracleServer,