Skip to content

Commit

Permalink
deps: tar@6.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed May 3, 2023
1 parent 69d4dd2 commit f2a5678
Show file tree
Hide file tree
Showing 11 changed files with 1,523 additions and 18 deletions.
1 change: 1 addition & 0 deletions node_modules/.gitignore
Expand Up @@ -324,6 +324,7 @@
!/tar/node_modules/fs-minipass/node_modules/
/tar/node_modules/fs-minipass/node_modules/*
!/tar/node_modules/fs-minipass/node_modules/minipass
!/tar/node_modules/minipass
!/text-table
!/tiny-relative-date
!/treeverse
Expand Down
4 changes: 2 additions & 2 deletions node_modules/tar/lib/pack.js
Expand Up @@ -22,7 +22,7 @@ class PackJob {
}
}

const MiniPass = require('minipass')
const { Minipass } = require('minipass')
const zlib = require('minizlib')
const ReadEntry = require('./read-entry.js')
const WriteEntry = require('./write-entry.js')
Expand Down Expand Up @@ -56,7 +56,7 @@ const path = require('path')
const warner = require('./warn-mixin.js')
const normPath = require('./normalize-windows-path.js')

const Pack = warner(class Pack extends MiniPass {
const Pack = warner(class Pack extends Minipass {
constructor (opt) {
super(opt)
opt = opt || Object.create(null)
Expand Down
4 changes: 2 additions & 2 deletions node_modules/tar/lib/read-entry.js
@@ -1,9 +1,9 @@
'use strict'
const MiniPass = require('minipass')
const { Minipass } = require('minipass')
const normPath = require('./normalize-windows-path.js')

const SLURP = Symbol('slurp')
module.exports = class ReadEntry extends MiniPass {
module.exports = class ReadEntry extends Minipass {
constructor (header, ex, gex) {
super()
// read entries always start life paused. this is to avoid the
Expand Down
6 changes: 3 additions & 3 deletions node_modules/tar/lib/write-entry.js
@@ -1,5 +1,5 @@
'use strict'
const MiniPass = require('minipass')
const { Minipass } = require('minipass')
const Pax = require('./pax.js')
const Header = require('./header.js')
const fs = require('fs')
Expand Down Expand Up @@ -41,7 +41,7 @@ const stripAbsolutePath = require('./strip-absolute-path.js')

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

const WriteEntry = warner(class WriteEntry extends MiniPass {
const WriteEntry = warner(class WriteEntry extends Minipass {
constructor (p, opt) {
opt = opt || {}
super(opt)
Expand Down Expand Up @@ -417,7 +417,7 @@ class WriteEntrySync extends WriteEntry {
}
}

const WriteEntryTar = warner(class WriteEntryTar extends MiniPass {
const WriteEntryTar = warner(class WriteEntryTar extends Minipass {
constructor (readEntry, opt) {
opt = opt || {}
super(opt)
Expand Down
15 changes: 15 additions & 0 deletions node_modules/tar/node_modules/minipass/LICENSE
@@ -0,0 +1,15 @@
The ISC License

Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0 comments on commit f2a5678

Please sign in to comment.