step-node-agent 3.21.1 → 3.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graceful-fs",
|
|
3
3
|
"description": "A drop-in replacement for fs, making various improvements.",
|
|
4
|
-
"version": "4.2.
|
|
4
|
+
"version": "4.2.11",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/isaacs/node-graceful-fs"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"import-fresh": "^2.0.0",
|
|
39
39
|
"mkdirp": "^0.5.0",
|
|
40
40
|
"rimraf": "^2.2.8",
|
|
41
|
-
"tap": "^
|
|
41
|
+
"tap": "^16.3.4"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"fs.js",
|
|
@@ -46,5 +46,8 @@
|
|
|
46
46
|
"legacy-streams.js",
|
|
47
47
|
"polyfills.js",
|
|
48
48
|
"clone.js"
|
|
49
|
-
]
|
|
49
|
+
],
|
|
50
|
+
"tap": {
|
|
51
|
+
"reporter": "classic"
|
|
52
|
+
}
|
|
50
53
|
}
|
|
@@ -101,7 +101,7 @@ function patch (fs) {
|
|
|
101
101
|
var backoff = 0;
|
|
102
102
|
fs$rename(from, to, function CB (er) {
|
|
103
103
|
if (er
|
|
104
|
-
&& (er.code === "EACCES" || er.code === "EPERM")
|
|
104
|
+
&& (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY")
|
|
105
105
|
&& Date.now() - start < 60000) {
|
|
106
106
|
setTimeout(function() {
|
|
107
107
|
fs.stat(to, function (stater, st) {
|