Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2022-02-01 11:17:50 +0300
committerGitHub <noreply@github.com>2022-02-01 11:17:50 +0300
commit6ec225392675c92b102d3caad02ee3a157c9d1b7 (patch)
tree6836c71b09d64c848e0496eec6d94e0f28a46e6e /tools
parent7123a00b03a908621255dc35f8d75c112901a42c (diff)
lib: add fetch
Fixes: https://github.com/nodejs/node/issues/19393 PR-URL: https://github.com/nodejs/node/pull/41749 Refs: https://github.com/nodejs/undici/pull/1183 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/doc/type-parser.mjs4
-rwxr-xr-xtools/license-builder.sh2
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/doc/type-parser.mjs b/tools/doc/type-parser.mjs
index b476316f6ae..1f49fefa7e1 100644
--- a/tools/doc/type-parser.mjs
+++ b/tools/doc/type-parser.mjs
@@ -270,6 +270,10 @@ const customTypesMap = {
'webstreams.md#class-textencoderstream',
'TextDecoderStream':
'webstreams.md#class-textdecoderstream',
+
+ 'Headers': 'https://developer.mozilla.org/en-US/docs/Web/API/Headers',
+ 'Response': 'https://developer.mozilla.org/en-US/docs/Web/API/Response',
+ 'Request': 'https://developer.mozilla.org/en-US/docs/Web/API/Request',
};
const arrayPart = /(?:\[])+$/;
diff --git a/tools/license-builder.sh b/tools/license-builder.sh
index 31c525c0ec4..4aa7224d8e3 100755
--- a/tools/license-builder.sh
+++ b/tools/license-builder.sh
@@ -63,6 +63,8 @@ licenseText="$(cat deps/llhttp/LICENSE-MIT)"
addlicense "llhttp" "deps/llhttp" "$licenseText"
licenseText="$(cat "${rootdir}"/deps/corepack/LICENSE.md)"
addlicense "corepack" "deps/corepack" "$licenseText"
+licenseText="$(cat "${rootdir}"/deps/undici/LICENSE)"
+addlicense "undici" "deps/undici" "$licenseText"
licenseText="$(cat "${rootdir}"/deps/openssl/openssl/LICENSE.txt)"
addlicense "OpenSSL" "deps/openssl" "$licenseText"
licenseText="$(curl -sL https://raw.githubusercontent.com/bestiejs/punycode.js/HEAD/LICENSE-MIT.txt)"