1
0
Fork 0
mirror of https://github.com/bitcoin-s/bitcoin-s.git synced 2025-03-16 04:33:01 +01:00

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

* 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 testkitCoreJVM = testkitCore.jvm
lazy val testkitCoreJS = testkitCore.js
lazy val bitcoindRpc = project lazy val bitcoindRpc = project
.in(file("bitcoind-rpc")) .in(file("bitcoind-rpc"))
.settings(CommonSettings.prodSettings: _*) .settings(CommonSettings.prodSettings: _*)
@ -112,7 +114,8 @@ lazy val eclairRpc = project
.in(file("eclair-rpc")) .in(file("eclair-rpc"))
.dependsOn(asyncUtilsJVM, bitcoindRpc) .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 // quoting the val name this way makes it appear as
// 'bitcoin-s' in sbt/bloop instead of 'bitcoins' // 'bitcoin-s' in sbt/bloop instead of 'bitcoins'
@ -157,6 +160,7 @@ lazy val `bitcoin-s` = project
appCommons, appCommons,
appCommonsTest, appCommonsTest,
testkitCoreJVM, testkitCoreJVM,
testkitCoreJS,
testkit, testkit,
zmq, zmq,
oracleServer, oracleServer,