Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions docs/ecosystem/community/zio-http.md

This file was deleted.

2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
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": "0.0.3",
"@zio.dev/zio-http": "0.0.4",
"@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
9 changes: 1 addition & 8 deletions website/plugins/zio-ecosystem-docusaurus/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,11 @@ function zioEcosystemPlugin(context, options) {
};
}
var result = zioProjects
.filter(function (e) { return !(autoGeneratedSidebarProjects).includes(e.name); })
.map(function (project) {
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", "zio2-interop-cats3", "zio2-interop-cats2"].map(function (project) {
}).concat(["zio-sbt", "zio-direct", "zio-logging", "zio2-interop-cats3", "zio2-interop-cats2", "zio-http"].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 All @@ -73,7 +72,6 @@ function zioEcosystemPlugin(context, options) {
}
};
}
var autoGeneratedSidebarProjects = ['zio-http'];
function zioNpmProjects() {
return Object
.entries((JSON.parse(fs.readFileSync('package.json', 'utf8'))).dependencies)
Expand Down Expand Up @@ -177,11 +175,6 @@ var zioProjects = [
routeBasePath: 'zio-ftp',
sidebarPath: 'sidebars.js'
},
// {
// name: 'ZIO HTTP',
// routeBasePath: 'zio-http',
// sidebarPath: 'sidebars.js',
// },
{
name: 'ZIO Insight',
routeBasePath: 'zio-insight',
Expand Down
10 changes: 1 addition & 9 deletions website/plugins/zio-ecosystem-docusaurus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ function zioEcosystemPlugin(context: LoadContext, options: PluginOptions) {

const result =
zioProjects
.filter(e => !(autoGeneratedSidebarProjects).includes(e.name))
.map(project => {
return mapConfig(
categoryTemplate(
Expand All @@ -36,7 +35,7 @@ function zioEcosystemPlugin(context: LoadContext, options: PluginOptions) {
`${project.routeBasePath}/`
)
}).concat(
["zio-sbt", "zio-direct", "zio-logging", "zio2-interop-cats3", "zio2-interop-cats2"].map(project =>
["zio-sbt", "zio-direct", "zio-logging", "zio2-interop-cats3", "zio2-interop-cats2", "zio-http"].map(project =>
mapConfig(require(`@zio.dev/${project}/sidebars.js`).sidebar[0], `${project}/`)
)
)
Expand All @@ -55,8 +54,6 @@ function zioEcosystemPlugin(context: LoadContext, options: PluginOptions) {
}
}

const autoGeneratedSidebarProjects = ['zio-http']

function zioNpmProjects(): string[] {
return Object
.entries(
Expand Down Expand Up @@ -161,11 +158,6 @@ const zioProjects =
routeBasePath: 'zio-ftp',
sidebarPath: 'sidebars.js',
},
// {
// name: 'ZIO HTTP',
// routeBasePath: 'zio-http',
// sidebarPath: 'sidebars.js',
// },
{
name: 'ZIO Insight',
routeBasePath: 'zio-insight',
Expand Down
1 change: 0 additions & 1 deletion website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,6 @@ module.exports = {
"ecosystem/community/zio-arrow",
"ecosystem/community/zio-aws-s3",
"ecosystem/community/zio-grpc",
"ecosystem/community/zio-http",
"ecosystem/community/zio-k8s",
"ecosystem/community/zio-kinesis",
"ecosystem/community/zio-pulsar",
Expand Down