Skip to content

Commit 5a84e65

Browse files
committed
deps: graceful-fs@4.2.9
1 parent e198ac0 commit 5a84e65

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

node_modules/graceful-fs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "graceful-fs",
33
"description": "A drop-in replacement for fs, making various improvements.",
4-
"version": "4.2.8",
4+
"version": "4.2.9",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/isaacs/node-graceful-fs"

node_modules/graceful-fs/polyfills.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,10 @@ function patch (fs) {
310310
return function (target, options) {
311311
var stats = options ? orig.call(fs, target, options)
312312
: orig.call(fs, target)
313-
if (stats.uid < 0) stats.uid += 0x100000000
314-
if (stats.gid < 0) stats.gid += 0x100000000
313+
if (stats) {
314+
if (stats.uid < 0) stats.uid += 0x100000000
315+
if (stats.gid < 0) stats.gid += 0x100000000
316+
}
315317
return stats;
316318
}
317319
}

package-lock.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"columnify": "~1.5.4",
106106
"fastest-levenshtein": "^1.0.12",
107107
"glob": "^7.2.0",
108-
"graceful-fs": "^4.2.8",
108+
"graceful-fs": "^4.2.9",
109109
"hosted-git-info": "^4.1.0",
110110
"ini": "^2.0.0",
111111
"init-package-json": "^2.0.5",
@@ -3604,9 +3604,9 @@
36043604
}
36053605
},
36063606
"node_modules/graceful-fs": {
3607-
"version": "4.2.8",
3608-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz",
3609-
"integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==",
3607+
"version": "4.2.9",
3608+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz",
3609+
"integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==",
36103610
"inBundle": true
36113611
},
36123612
"node_modules/har-schema": {
@@ -13571,9 +13571,9 @@
1357113571
"dev": true
1357213572
},
1357313573
"graceful-fs": {
13574-
"version": "4.2.8",
13575-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz",
13576-
"integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="
13574+
"version": "4.2.9",
13575+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz",
13576+
"integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="
1357713577
},
1357813578
"har-schema": {
1357913579
"version": "2.0.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"columnify": "~1.5.4",
7474
"fastest-levenshtein": "^1.0.12",
7575
"glob": "^7.2.0",
76-
"graceful-fs": "^4.2.8",
76+
"graceful-fs": "^4.2.9",
7777
"hosted-git-info": "^4.1.0",
7878
"ini": "^2.0.0",
7979
"init-package-json": "^2.0.5",

0 commit comments

Comments
 (0)