Skip to content

Commit 938db00

Browse files
committed
1 parent 70e90e5 commit 938db00

7 files changed

Lines changed: 89 additions & 42 deletions

File tree

node_modules/minipass/LICENSE

Lines changed: 0 additions & 15 deletions
This file was deleted.

node_modules/minipass/LICENSE.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Blue Oak Model License
2+
3+
Version 1.0.0
4+
5+
## Purpose
6+
7+
This license gives everyone as much permission to work with
8+
this software as possible, while protecting contributors
9+
from liability.
10+
11+
## Acceptance
12+
13+
In order to receive this license, you must agree to its
14+
rules. The rules of this license are both obligations
15+
under that agreement and conditions to your license.
16+
You must not do anything with this software that triggers
17+
a rule that you cannot or will not follow.
18+
19+
## Copyright
20+
21+
Each contributor licenses you to do everything with this
22+
software that would otherwise infringe that contributor's
23+
copyright in it.
24+
25+
## Notices
26+
27+
You must ensure that everyone who gets a copy of
28+
any part of this software from you, with or without
29+
changes, also gets the text of this license or a link to
30+
<https://blueoakcouncil.org/license/1.0.0>.
31+
32+
## Excuse
33+
34+
If anyone notifies you in writing that you have not
35+
complied with [Notices](#notices), you can keep your
36+
license by taking all practical steps to comply within 30
37+
days after the notice. If you do not do so, your license
38+
ends immediately.
39+
40+
## Patent
41+
42+
Each contributor licenses you to do everything with this
43+
software that would otherwise infringe any patent claims
44+
they can license or become able to license.
45+
46+
## Reliability
47+
48+
No contributor can revoke this license.
49+
50+
## No Liability
51+
52+
***As far as the law allows, this software comes as is,
53+
without any warranty or condition, and no contributor
54+
will be liable to anyone for any damages related to this
55+
software or this license, under any kind of legal claim.***

node_modules/minipass/dist/commonjs/index.js

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ const isStream = (s) => !!s &&
2222
(s instanceof Minipass ||
2323
s instanceof node_stream_1.default ||
2424
(0, exports.isReadable)(s) ||
25-
(0, exports.isWritable)(s));
25+
(0, exports.isWritable)(s))
26+
/**
27+
* Return true if the argument is a valid {@link Minipass.Readable}
28+
*/
29+
;
2630
exports.isStream = isStream;
2731
/**
2832
* Return true if the argument is a valid {@link Minipass.Readable}
@@ -32,7 +36,11 @@ const isReadable = (s) => !!s &&
3236
s instanceof node_events_1.EventEmitter &&
3337
typeof s.pipe === 'function' &&
3438
// node core Writable streams have a pipe() method, but it throws
35-
s.pipe !== node_stream_1.default.Writable.prototype.pipe;
39+
s.pipe !== node_stream_1.default.Writable.prototype.pipe
40+
/**
41+
* Return true if the argument is a valid {@link Minipass.Writable}
42+
*/
43+
;
3644
exports.isReadable = isReadable;
3745
/**
3846
* Return true if the argument is a valid {@link Minipass.Writable}
@@ -129,7 +137,7 @@ class PipeProxyErrors extends Pipe {
129137
}
130138
constructor(src, dest, opts) {
131139
super(src, dest, opts);
132-
this.proxyErrors = er => dest.emit('error', er);
140+
this.proxyErrors = (er) => this.dest.emit('error', er);
133141
src.on('error', this.proxyErrors);
134142
}
135143
}
@@ -939,6 +947,7 @@ class Minipass extends node_events_1.EventEmitter {
939947
[Symbol.asyncIterator]() {
940948
return this;
941949
},
950+
[Symbol.asyncDispose]: async () => { },
942951
};
943952
}
944953
/**
@@ -976,6 +985,7 @@ class Minipass extends node_events_1.EventEmitter {
976985
[Symbol.iterator]() {
977986
return this;
978987
},
988+
[Symbol.dispose]: () => { },
979989
};
980990
}
981991
/**

node_modules/minipass/dist/esm/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class PipeProxyErrors extends Pipe {
120120
}
121121
constructor(src, dest, opts) {
122122
super(src, dest, opts);
123-
this.proxyErrors = er => dest.emit('error', er);
123+
this.proxyErrors = (er) => this.dest.emit('error', er);
124124
src.on('error', this.proxyErrors);
125125
}
126126
}
@@ -930,6 +930,7 @@ export class Minipass extends EventEmitter {
930930
[Symbol.asyncIterator]() {
931931
return this;
932932
},
933+
[Symbol.asyncDispose]: async () => { },
933934
};
934935
}
935936
/**
@@ -967,6 +968,7 @@ export class Minipass extends EventEmitter {
967968
[Symbol.iterator]() {
968969
return this;
969970
},
971+
[Symbol.dispose]: () => { },
970972
};
971973
}
972974
/**

node_modules/minipass/package.json

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "minipass",
3-
"version": "7.1.2",
3+
"version": "7.1.3",
44
"description": "minimal implementation of a PassThrough stream",
55
"main": "./dist/commonjs/index.js",
66
"types": "./dist/commonjs/index.d.ts",
7+
"module": "./dist/esm/index.js",
78
"type": "module",
89
"tshy": {
910
"selfLink": false,
10-
"main": true,
11+
"compiler": "tsgo",
1112
"exports": {
1213
"./package.json": "./package.json",
1314
".": "./src/index.ts"
@@ -54,29 +55,23 @@
5455
},
5556
"devDependencies": {
5657
"@types/end-of-stream": "^1.4.2",
57-
"@types/node": "^20.1.2",
58+
"@types/node": "^25.2.3",
5859
"end-of-stream": "^1.4.0",
5960
"node-abort-controller": "^3.1.1",
60-
"prettier": "^2.6.2",
61-
"tap": "^19.0.0",
61+
"prettier": "^3.8.1",
62+
"tap": "^21.6.1",
6263
"through2": "^2.0.3",
63-
"tshy": "^1.14.0",
64-
"typedoc": "^0.25.1"
64+
"tshy": "^3.3.2",
65+
"typedoc": "^0.28.17"
6566
},
6667
"repository": "https://github.com/isaacs/minipass",
6768
"keywords": [
6869
"passthrough",
6970
"stream"
7071
],
7172
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me/)",
72-
"license": "ISC",
73+
"license": "BlueOak-1.0.0",
7374
"engines": {
7475
"node": ">=16 || 14 >=14.17"
75-
},
76-
"tap": {
77-
"typecheck": true,
78-
"include": [
79-
"test/*.ts"
80-
]
8176
}
8277
}

package-lock.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
"libnpmversion": "^7.0.0",
125125
"make-fetch-happen": "^14.0.3",
126126
"minimatch": "^9.0.9",
127-
"minipass": "^7.1.1",
127+
"minipass": "^7.1.3",
128128
"minipass-pipeline": "^1.2.4",
129129
"ms": "^2.1.2",
130130
"node-gyp": "^11.2.0",
@@ -201,7 +201,7 @@
201201
"remark-man": "^8.0.1",
202202
"remark-parse": "^10.0.1",
203203
"remark-rehype": "^10.1.0",
204-
"semver": "^7.7.4",
204+
"semver": "^7.3.8",
205205
"tap": "^16.3.8",
206206
"unified": "^10.1.2",
207207
"yaml": "^2.2.1"
@@ -10374,11 +10374,11 @@
1037410374
}
1037510375
},
1037610376
"node_modules/minipass": {
10377-
"version": "7.1.2",
10378-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
10379-
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
10377+
"version": "7.1.3",
10378+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
10379+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
1038010380
"inBundle": true,
10381-
"license": "ISC",
10381+
"license": "BlueOak-1.0.0",
1038210382
"engines": {
1038310383
"node": ">=16 || 14 >=14.17"
1038410384
}
@@ -17468,7 +17468,7 @@
1746817468
"json-parse-even-better-errors": "^4.0.0",
1746917469
"json-stringify-nice": "^1.1.4",
1747017470
"lru-cache": "^10.2.2",
17471-
"minimatch": "^9.0.9",
17471+
"minimatch": "^9.0.4",
1747217472
"nopt": "^8.0.0",
1747317473
"npm-install-checks": "^7.1.0",
1747417474
"npm-package-arg": "^12.0.0",
@@ -17553,7 +17553,7 @@
1755317553
"@npmcli/installed-package-contents": "^3.0.0",
1755417554
"binary-extensions": "^2.3.0",
1755517555
"diff": "^5.1.0",
17556-
"minimatch": "^9.0.9",
17556+
"minimatch": "^9.0.4",
1755717557
"npm-package-arg": "^12.0.0",
1755817558
"pacote": "^19.0.0",
1755917559
"tar": "^6.2.1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"libnpmversion": "^7.0.0",
9090
"make-fetch-happen": "^14.0.3",
9191
"minimatch": "^9.0.9",
92-
"minipass": "^7.1.1",
92+
"minipass": "^7.1.3",
9393
"minipass-pipeline": "^1.2.4",
9494
"ms": "^2.1.2",
9595
"node-gyp": "^11.2.0",

0 commit comments

Comments
 (0)