Skip to content

Commit 36bb6b7

Browse files
committed
Fix JS coordinates for dependencies
1 parent 50f95de commit 36bb6b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ lazy val fs2ce2 = (projectMatrix in file("fs2-ce2"))
161161
.settings(
162162
name := "fs2-ce2",
163163
libraryDependencies ++= dependenciesFor(scalaVersion.value)(
164-
"co.fs2" %% "fs2-io" % fs2_2_version(_)
164+
"co.fs2" %%% "fs2-io" % fs2_2_version(_)
165165
)
166166
)
167167
.jvmPlatform(
@@ -177,7 +177,7 @@ lazy val fs2ce2 = (projectMatrix in file("fs2-ce2"))
177177
lazy val fs2 = (projectMatrix in file("fs2"))
178178
.settings(
179179
name := "fs2",
180-
libraryDependencies += "co.fs2" %% "fs2-io" % fs2_3_version
180+
libraryDependencies += "co.fs2" %%% "fs2-io" % fs2_3_version
181181
)
182182
.jvmPlatform(
183183
scalaVersions = List(scala2_12, scala2_13) ++ scala3,
@@ -207,7 +207,7 @@ lazy val monix = (projectMatrix in file("monix"))
207207
lazy val zio1 = (projectMatrix in file("zio1"))
208208
.settings(
209209
name := "zio1",
210-
libraryDependencies ++= Seq("dev.zio" %% "zio-streams" % zio1Version, "dev.zio" %% "zio" % zio1Version)
210+
libraryDependencies ++= Seq("dev.zio" %%% "zio-streams" % zio1Version, "dev.zio" %%% "zio" % zio1Version)
211211
)
212212
.jvmPlatform(
213213
scalaVersions = scala2 ++ scala3,
@@ -222,7 +222,7 @@ lazy val zio1 = (projectMatrix in file("zio1"))
222222
lazy val zio = (projectMatrix in file("zio"))
223223
.settings(
224224
name := "zio",
225-
libraryDependencies ++= Seq("dev.zio" %% "zio-streams" % zio2Version, "dev.zio" %% "zio" % zio2Version)
225+
libraryDependencies ++= Seq("dev.zio" %%% "zio-streams" % zio2Version, "dev.zio" %%% "zio" % zio2Version)
226226
)
227227
.jvmPlatform(
228228
scalaVersions = scala2 ++ scala3,

0 commit comments

Comments
 (0)