Updated the project.

This commit is contained in:
Batuhan Berk Başoğlu 2024-06-03 15:44:25 -04:00
parent 5dfe9f128d
commit 7919556077
1550 changed files with 17063 additions and 40183 deletions

0
my-app/node_modules/minipass-fetch/LICENSE generated vendored Executable file → Normal file
View file

0
my-app/node_modules/minipass-fetch/README.md generated vendored Executable file → Normal file
View file

0
my-app/node_modules/minipass-fetch/lib/abort-error.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/minipass-fetch/lib/blob.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/minipass-fetch/lib/body.js generated vendored Executable file → Normal file
View file

@ -146,7 +146,7 @@ class Body {
// do the pipe in the promise, because the pipe() can send too much
// data through right away and upset the MP Sized object
return new Promise((resolve, reject) => {
return new Promise((resolve) => {
// if the stream is some other kind of stream, then pipe through a MP
// so we can collect it more easily.
if (stream !== upstream) {

0
my-app/node_modules/minipass-fetch/lib/fetch-error.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/minipass-fetch/lib/headers.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/minipass-fetch/lib/index.js generated vendored Executable file → Normal file
View file

@ -103,7 +103,7 @@ const fetch = async (url, opts) => {
let reqTimeout = null
if (request.timeout) {
req.once('socket', socket => {
req.once('socket', () => {
reqTimeout = setTimeout(() => {
reject(new FetchError(`network timeout at: ${
request.url}`, 'request-timeout'))

0
my-app/node_modules/minipass-fetch/lib/request.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/minipass-fetch/lib/response.js generated vendored Executable file → Normal file
View file

10
my-app/node_modules/minipass-fetch/package.json generated vendored Executable file → Normal file
View file

@ -1,6 +1,6 @@
{
"name": "minipass-fetch",
"version": "3.0.4",
"version": "3.0.5",
"description": "An implementation of window.fetch in Node.js using Minipass streams",
"license": "MIT",
"main": "lib/index.js",
@ -8,7 +8,7 @@
"test:tls-fixtures": "./test/fixtures/tls/setup.sh",
"test": "tap",
"snap": "tap",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"postlint": "template-oss-check",
"lintfix": "npm run lint -- --fix",
"posttest": "npm run lint",
@ -24,7 +24,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"@npmcli/template-oss": "4.22.0",
"@ungap/url-search-params": "^0.2.2",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "~1.7.3",
@ -45,7 +45,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/npm/minipass-fetch.git"
"url": "git+https://github.com/npm/minipass-fetch.git"
},
"keywords": [
"fetch",
@ -63,7 +63,7 @@
"author": "GitHub Inc.",
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.18.0",
"version": "4.22.0",
"publish": "true"
}
}