Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-08-21 01:58:09 +0300
committerisaacs <i@izs.me>2020-08-21 01:58:09 +0300
commit281da6fdcda3fb3860b73ed35daa234ad228c363 (patch)
treef2ab649bd62ef7cdcd85a8914b36c78231ae40b4 /node_modules/tar
parent9891fa71c88f425bef8d881c3795e5823d732e1f (diff)
tar@6.0.5
Minor fixes, updates minizlib to clean up some error handling
Diffstat (limited to 'node_modules/tar')
-rw-r--r--node_modules/tar/CHANGELOG.md2
-rw-r--r--node_modules/tar/README.md2
-rw-r--r--node_modules/tar/package.json6
3 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/tar/CHANGELOG.md b/node_modules/tar/CHANGELOG.md
index 7058fe253..9373401b3 100644
--- a/node_modules/tar/CHANGELOG.md
+++ b/node_modules/tar/CHANGELOG.md
@@ -1,4 +1,4 @@
-# Charge Long
+# Changelog
## 6.0
diff --git a/node_modules/tar/README.md b/node_modules/tar/README.md
index 5e635e622..1d6969405 100644
--- a/node_modules/tar/README.md
+++ b/node_modules/tar/README.md
@@ -774,7 +774,7 @@ It has the following fields:
if it represents a filesystem object.
- All the fields from the header, extended header, and global extended
header are added to the ReadEntry object. So it has `path`, `type`,
- `size, `mode`, and so on.
+ `size`, `mode`, and so on.
#### constructor(header, extended, globalExtended)
diff --git a/node_modules/tar/package.json b/node_modules/tar/package.json
index 2416c084c..9c388c57c 100644
--- a/node_modules/tar/package.json
+++ b/node_modules/tar/package.json
@@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"name": "tar",
"description": "tar for node",
- "version": "6.0.2",
+ "version": "6.0.5",
"repository": {
"type": "git",
"url": "https://github.com/npm/node-tar.git"
@@ -11,7 +11,7 @@
"test": "tap",
"preversion": "npm test",
"postversion": "npm publish",
- "postpublish": "git push origin --follow-tags",
+ "prepublishOnly": "git push origin --follow-tags",
"genparse": "node scripts/generate-parse-fixtures.js",
"bench": "for i in benchmarks/*/*.js; do echo $i; for j in {1..5}; do node $i || break; done; done"
},
@@ -19,7 +19,7 @@
"chownr": "^2.0.0",
"fs-minipass": "^2.0.0",
"minipass": "^3.0.0",
- "minizlib": "^2.1.0",
+ "minizlib": "^2.1.1",
"mkdirp": "^1.0.3",
"yallist": "^4.0.0"
},