File tree 4 files changed +13
-11
lines changed
4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " graceful-fs" ,
3
3
"description" : " A drop-in replacement for fs, making various improvements." ,
4
- "version" : " 4.2.8 " ,
4
+ "version" : " 4.2.9 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/isaacs/node-graceful-fs"
Original file line number Diff line number Diff line change @@ -310,8 +310,10 @@ function patch (fs) {
310
310
return function ( target , options ) {
311
311
var stats = options ? orig . call ( fs , target , options )
312
312
: 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
+ }
315
317
return stats ;
316
318
}
317
319
}
Original file line number Diff line number Diff line change 105
105
"columnify": "~1.5.4",
106
106
"fastest-levenshtein": "^1.0.12",
107
107
"glob": "^7.2.0",
108
- "graceful-fs": "^4.2.8 ",
108
+ "graceful-fs": "^4.2.9 ",
109
109
"hosted-git-info": "^4.1.0",
110
110
"ini": "^2.0.0",
111
111
"init-package-json": "^2.0.5",
3604
3604
}
3605
3605
},
3606
3606
"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 ==",
3610
3610
"inBundle": true
3611
3611
},
3612
3612
"node_modules/har-schema": {
13571
13571
"dev": true
13572
13572
},
13573
13573
"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 =="
13577
13577
},
13578
13578
"har-schema": {
13579
13579
"version": "2.0.0",
Original file line number Diff line number Diff line change 73
73
"columnify" : " ~1.5.4" ,
74
74
"fastest-levenshtein" : " ^1.0.12" ,
75
75
"glob" : " ^7.2.0" ,
76
- "graceful-fs" : " ^4.2.8 " ,
76
+ "graceful-fs" : " ^4.2.9 " ,
77
77
"hosted-git-info" : " ^4.1.0" ,
78
78
"ini" : " ^2.0.0" ,
79
79
"init-package-json" : " ^2.0.5" ,
You can’t perform that action at this time.
0 commit comments