Skip to content

Commit

Permalink
tagged, taggedMeta native
Browse files Browse the repository at this point in the history
  • Loading branch information
luksow committed Sep 10, 2024
1 parent 6e2c35a commit f195bc3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def pekkoHttpInExamples = {
Seq(pekkoStream, pekkoHttp, pekkoHttpSprayJson)
}

val http4sVersion = "0.23.27"
val http4sVersion = "0.23.28"
val http4s = Def.setting("org.http4s" %%% "http4s-dsl" % http4sVersion)

val http4sStirVersion = "0.3"
Expand Down Expand Up @@ -457,7 +457,7 @@ lazy val scalacheckSupport = project
crossScalaVersions := supportedScalaVersions
)

lazy val tagged = crossProject(JSPlatform, JVMPlatform)
lazy val tagged = crossProject(JSPlatform, NativePlatform, JVMPlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Full)
.in(file("tagged"))
Expand Down Expand Up @@ -486,7 +486,7 @@ lazy val opaque = crossProject(JSPlatform, NativePlatform, JVMPlatform)
)
.settings(disableScala(List("2.13")))

lazy val taggedMeta = crossProject(JSPlatform, JVMPlatform)
lazy val taggedMeta = crossProject(JSPlatform, NativePlatform, JVMPlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Full)
.in(file("tagged-meta"))
Expand Down Expand Up @@ -579,6 +579,7 @@ lazy val kebs = project
.aggregate(
tagged.jvm,
tagged.js,
tagged.native,
opaque.jvm,
opaque.js,
opaque.native,
Expand All @@ -602,6 +603,7 @@ lazy val kebs = project
http4sStirSupport.js,
taggedMeta.jvm,
taggedMeta.js,
taggedMeta.native,
instances.jvm,
instances.js,
instances.native,
Expand Down

0 comments on commit f195bc3

Please sign in to comment.