deps: minipass@7.1.3 · npm/cli@aa7fef5 · GitHub
Skip to content

Commit aa7fef5

Browse files
committed
deps: minipass@7.1.3
1 parent d3a4161 commit aa7fef5

7 files changed

Lines changed: 86 additions & 37 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

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 <i@izs.me> (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: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"libnpmversion": "^8.0.3",
121121
"make-fetch-happen": "^15.0.3",
122122
"minimatch": "^10.2.1",
123-
"minipass": "^7.1.1",
123+
"minipass": "^7.1.3",
124124
"minipass-pipeline": "^1.2.4",
125125
"ms": "^2.1.2",
126126
"node-gyp": "^12.2.0",
@@ -8195,9 +8195,11 @@
81958195
}
81968196
},
81978197
"node_modules/minipass": {
8198-
"version": "7.1.2",
8198+
"version": "7.1.3",
8199+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
8200+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
81998201
"inBundle": true,
8200-
"license": "ISC",
8202+
"license": "BlueOak-1.0.0",
82018203
"engines": {
82028204
"node": ">=16 || 14 >=14.17"
82038205
}

package.json

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)