mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-03 10:46:42 +01:00
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
This commit is contained in:
parent
6b4812848b
commit
8a4739d509
1 changed files with 8 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue