Skip to content

Commit f2a5678

Browse files
committedMay 3, 2023
deps: tar@6.1.14
1 parent 69d4dd2 commit f2a5678

File tree

11 files changed

+1523
-18
lines changed

11 files changed

+1523
-18
lines changed
 

‎node_modules/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
!/tar/node_modules/fs-minipass/node_modules/
325325
/tar/node_modules/fs-minipass/node_modules/*
326326
!/tar/node_modules/fs-minipass/node_modules/minipass
327+
!/tar/node_modules/minipass
327328
!/text-table
328329
!/tiny-relative-date
329330
!/treeverse

‎node_modules/tar/lib/pack.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PackJob {
2222
}
2323
}
2424

25-
const MiniPass = require('minipass')
25+
const { Minipass } = require('minipass')
2626
const zlib = require('minizlib')
2727
const ReadEntry = require('./read-entry.js')
2828
const WriteEntry = require('./write-entry.js')
@@ -56,7 +56,7 @@ const path = require('path')
5656
const warner = require('./warn-mixin.js')
5757
const normPath = require('./normalize-windows-path.js')
5858

59-
const Pack = warner(class Pack extends MiniPass {
59+
const Pack = warner(class Pack extends Minipass {
6060
constructor (opt) {
6161
super(opt)
6262
opt = opt || Object.create(null)

‎node_modules/tar/lib/read-entry.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict'
2-
const MiniPass = require('minipass')
2+
const { Minipass } = require('minipass')
33
const normPath = require('./normalize-windows-path.js')
44

55
const SLURP = Symbol('slurp')
6-
module.exports = class ReadEntry extends MiniPass {
6+
module.exports = class ReadEntry extends Minipass {
77
constructor (header, ex, gex) {
88
super()
99
// read entries always start life paused. this is to avoid the

‎node_modules/tar/lib/write-entry.js

+3-3
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 Pax = require('./pax.js')
44
const Header = require('./header.js')
55
const fs = require('fs')
@@ -41,7 +41,7 @@ const stripAbsolutePath = require('./strip-absolute-path.js')
4141

4242
const modeFix = require('./mode-fix.js')
4343

44-
const WriteEntry = warner(class WriteEntry extends MiniPass {
44+
const WriteEntry = warner(class WriteEntry extends Minipass {
4545
constructor (p, opt) {
4646
opt = opt || {}
4747
super(opt)
@@ -417,7 +417,7 @@ class WriteEntrySync extends WriteEntry {
417417
}
418418
}
419419

420-
const WriteEntryTar = warner(class WriteEntryTar extends MiniPass {
420+
const WriteEntryTar = warner(class WriteEntryTar extends Minipass {
421421
constructor (readEntry, opt) {
422422
opt = opt || {}
423423
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/tar/node_modules/minipass/index.js

+702
Large diffs are not rendered by default.

‎node_modules/tar/node_modules/minipass/index.mjs

+702
Large diffs are not rendered by default.

‎node_modules/tar/node_modules/minipass/package.json

+76
Original file line numberDiff line numberDiff line change

‎node_modules/tar/package.json

+5-5
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
@@ -111,7 +111,7 @@
111111
"read-package-json-fast": "^3.0.2",
112112
"semver": "^7.5.0",
113113
"ssri": "^10.0.4",
114-
"tar": "^6.1.13",
114+
"tar": "^6.1.14",
115115
"text-table": "~0.2.0",
116116
"tiny-relative-date": "^1.3.0",
117117
"treeverse": "^3.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.