Skip to content

Commit

Permalink
add zio interop cats docs. (#7742)
Browse files Browse the repository at this point in the history
  • Loading branch information
khajavi committed Jan 23, 2023
1 parent 693653f commit 9a1ee22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion website/package.json
Expand Up @@ -34,7 +34,7 @@
"@zio.dev/zio-dynamodb": "2022.11.23-04d605ee9bab",
"@zio.dev/zio-flow": "1.0.0-RC2",
"@zio.dev/zio-ftp": "^0.4.0",
"@zio.dev/zio-http": "2.0.0-RC11",
"@zio.dev/zio-http": "0.0.3",
"@zio.dev/zio-insight": "0.0.0--256-ef32e749-SNAPSHOT",
"@zio.dev/zio-interop-guava": "^32.1.0",
"@zio.dev/zio-interop-reactivestreams": "^2.0.0",
Expand Down Expand Up @@ -67,6 +67,8 @@
"@zio.dev/zio-sqs": "2022.11.23-5a814304824c",
"@zio.dev/zio-telemetry": "^3.0.0-RC1",
"@zio.dev/zio-webhooks": "^0.2.1",
"@zio.dev/zio2-interop-cats2": "^2023.1.23-571dabdd91f9",
"@zio.dev/zio2-interop-cats3": "^2023.1.23-4507be3e08b9",
"babel": "^6.23.0",
"blended-include-code-plugin": "0.1.2",
"clsx": "1.2.1",
Expand Down
2 changes: 1 addition & 1 deletion website/plugins/zio-ecosystem-docusaurus/index.js
Expand Up @@ -59,7 +59,7 @@ function zioEcosystemPlugin(context, options) {
return mapConfig(categoryTemplate(project.name, require("@zio.dev/".concat(project.routeBasePath, "/").concat(project.sidebarPath))
.sidebar
.filter(function (e) { return e != "index"; })), "".concat(project.routeBasePath, "/"));
}).concat(["zio-sbt", "zio-direct", "zio-logging"].map(function (project) {
}).concat(["zio-sbt", "zio-direct", "zio-logging", "zio2-interop-cats3", "zio2-interop-cats2"].map(function (project) {
return mapConfig(require("@zio.dev/".concat(project, "/sidebars.js")).sidebar[0], "".concat(project, "/"));
}))
.sort(function (a, b) { return a.label < b.label ? -1 : a.label > b.label ? 1 : 0; });
Expand Down
2 changes: 1 addition & 1 deletion website/plugins/zio-ecosystem-docusaurus/index.ts
Expand Up @@ -36,7 +36,7 @@ function zioEcosystemPlugin(context: LoadContext, options: PluginOptions) {
`${project.routeBasePath}/`
)
}).concat(
["zio-sbt", "zio-direct", "zio-logging"].map(project =>
["zio-sbt", "zio-direct", "zio-logging", "zio2-interop-cats3", "zio2-interop-cats2"].map(project =>
mapConfig(require(`@zio.dev/${project}/sidebars.js`).sidebar[0], `${project}/`)
)
)
Expand Down

0 comments on commit 9a1ee22

Please sign in to comment.