Skip to content

Commit 6927fd3

Browse files
committedMay 3, 2023
deps: fs-minipass@3.0.2
1 parent 3eec56e commit 6927fd3

File tree

9 files changed

+1520
-12
lines changed

9 files changed

+1520
-12
lines changed
 

‎node_modules/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@
123123
!/events
124124
!/fastest-levenshtein
125125
!/fs-minipass
126+
!/fs-minipass/node_modules/
127+
/fs-minipass/node_modules/*
128+
!/fs-minipass/node_modules/minipass
126129
!/fs.realpath
127130
!/function-bind
128131
!/gauge

‎node_modules/fs-minipass/lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
const MiniPass = require('minipass')
2+
const { Minipass } = require('minipass')
33
const EE = require('events').EventEmitter
44
const fs = require('fs')
55

@@ -34,7 +34,7 @@ const _writing = Symbol('_writing')
3434
const _defaultFlag = Symbol('_defaultFlag')
3535
const _errored = Symbol('_errored')
3636

37-
class ReadStream extends MiniPass {
37+
class ReadStream extends Minipass {
3838
constructor (path, opt) {
3939
opt = opt || {}
4040
super(opt)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

‎node_modules/fs-minipass/node_modules/minipass/index.js

+702
Large diffs are not rendered by default.

‎node_modules/fs-minipass/node_modules/minipass/index.mjs

+702
Large diffs are not rendered by default.

‎node_modules/fs-minipass/node_modules/minipass/package.json

+76
Original file line numberDiff line numberDiff line change

‎node_modules/fs-minipass/package.json

+5-4
Original file line numberDiff line numberDiff line change

‎package-lock.json

+14-5
Original file line numberDiff line numberDiff line change

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"cli-table3": "^0.6.3",
6868
"columnify": "^1.6.0",
6969
"fastest-levenshtein": "^1.0.16",
70-
"fs-minipass": "^3.0.1",
70+
"fs-minipass": "^3.0.2",
7171
"glob": "^9.3.2",
7272
"graceful-fs": "^4.2.11",
7373
"hosted-git-info": "^6.1.1",

0 commit comments

Comments
 (0)
Please sign in to comment.