mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-13 11:35:40 +01:00
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:
parent
e59057483f
commit
6b4812848b
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue