File tree Expand file tree Collapse file tree 1 file changed +27
-14
lines changed Expand file tree Collapse file tree 1 file changed +27
-14
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
3
# Previously, URLs to plugin pages looked like this:
4
- # interfaces/plugins.amqp10 .html
4
+ # interfaces/export_. plugins.connect .html
5
5
#
6
6
# Now, with an updated typedoc and updated types, they look like this:
7
- # interfaces/export_. plugins.connect .html
8
- #
7
+ # interfaces/plugins.amqp10 .html
8
+ #
9
9
# This script automatically generates basic HTML files to redirect users who
10
10
# visit the old URLs to the new URL.
11
11
12
12
echo " writing redirects..."
13
+ # TODO(2026-10-07): Delete this file and remove from docs/package.json
14
+ # NOTE: Do not add any new entries to this list
13
15
14
16
declare -a plugins=(
17
+ " aerospike"
15
18
" amqp10"
16
19
" amqplib"
20
+ " apollo"
17
21
" avsc"
18
22
" aws_sdk"
19
- " bluebird "
20
- " couchbase "
21
- " cucumber "
23
+ " axios "
24
+ " azure_functions "
25
+ " azure_service_bus "
22
26
" bunyan"
23
27
" cassandra_driver"
28
+ " child_process"
24
29
" confluentinc_kafka_javascript"
25
30
" connect"
31
+ " couchbase"
32
+ " cucumber"
33
+ " cypress"
26
34
" dns"
27
35
" elasticsearch"
28
36
" express"
29
37
" fastify"
30
38
" fetch"
31
39
" generic_pool"
32
40
" google_cloud_pubsub"
41
+ " google_cloud_vertexai"
33
42
" graphql"
34
43
" grpc"
35
44
" hapi"
45
+ " hono"
36
46
" http"
37
47
" http2"
38
48
" ioredis"
@@ -41,38 +51,41 @@ declare -a plugins=(
41
51
" kafkajs"
42
52
" knex"
43
53
" koa"
54
+ " langchain"
44
55
" ldapjs"
45
56
" mariadb"
57
+ " memcached"
46
58
" microgateway_core"
47
59
" mocha"
48
60
" mongodb_core"
61
+ " mongoose"
49
62
" mysql"
50
63
" mysql2"
51
64
" net"
52
65
" next"
53
- " opensearch"
54
66
" openai"
67
+ " opensearch"
55
68
" oracledb"
56
- " pino"
57
69
" pg"
70
+ " pino"
71
+ " playwright"
58
72
" prisma"
59
- " promise"
60
- " promise_js"
61
73
" protobufjs"
62
- " q"
63
74
" redis"
64
75
" restify"
76
+ " rhea"
65
77
" router"
78
+ " selenium"
79
+ " sharedb"
66
80
" tedious"
67
81
" undici"
68
- " when "
82
+ " vitest "
69
83
" winston"
70
- " ws"
71
84
)
72
85
73
86
for i in " ${plugins[@]} "
74
87
do
75
- echo " <meta http-equiv=\" refresh\" content=\" 0; URL=./export_. plugins.$i .html\" />" > out/interfaces/plugins.$i .html
88
+ echo " <meta http-equiv=\" refresh\" content=\" 0; URL=./plugins.$i .html\" />" > out/interfaces/export_. plugins.$i .html
76
89
done
77
90
78
91
echo " done."
You can’t perform that action at this time.
0 commit comments