Skip to content

Commit

Permalink
feat(zio-json): support JS and Native
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsBroersen committed Aug 25, 2024
1 parent c90e266 commit 3907476
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ lazy val zioJson: ProjectMatrix = (projectMatrix in file("json/zio"))
.settings(
name := "tapir-json-zio",
libraryDependencies ++= Seq(
"dev.zio" %% "zio-json" % Versions.zioJson,
"dev.zio" %%% "zio-json" % Versions.zioJson,
scalaTest.value % Test
)
)
Expand All @@ -954,6 +954,10 @@ lazy val zioJson: ProjectMatrix = (projectMatrix in file("json/zio"))
scalaVersions = scala2And3Versions,
settings = commonJsSettings
)
.nativePlatform(
scalaVersions = List(scala3),
settings = commonNativeSettings
)
.dependsOn(core)

//grpc
Expand Down

0 comments on commit 3907476

Please sign in to comment.