Comparing version 7.0.3 to 7.0.4
@@ -44,2 +44,3 @@ // Approach: | ||
var fs = require('fs') | ||
var rp = require('fs.realpath') | ||
var minimatch = require('minimatch') | ||
@@ -236,3 +237,3 @@ var Minimatch = minimatch.Minimatch | ||
p = self._makeAbs(p) | ||
fs.realpath(p, self.realpathCache, function (er, real) { | ||
rp.realpath(p, self.realpathCache, function (er, real) { | ||
if (!er) | ||
@@ -239,0 +240,0 @@ set[real] = true |
@@ -5,3 +5,3 @@ { | ||
"description": "a little globber", | ||
"version": "7.0.3", | ||
"version": "7.0.4", | ||
"repository": { | ||
@@ -21,2 +21,3 @@ "type": "git", | ||
"dependencies": { | ||
"fs.realpath": "^1.0.0", | ||
"inflight": "^1.0.4", | ||
@@ -23,0 +24,0 @@ "inherits": "2", |
@@ -5,2 +5,3 @@ module.exports = globSync | ||
var fs = require('fs') | ||
var rp = require('fs.realpath') | ||
var minimatch = require('minimatch') | ||
@@ -61,3 +62,3 @@ var Minimatch = minimatch.Minimatch | ||
p = self._makeAbs(p) | ||
var real = fs.realpathSync(p, self.realpathCache) | ||
var real = rp.realpathSync(p, self.realpathCache) | ||
set[real] = true | ||
@@ -64,0 +65,0 @@ } catch (er) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1226
40052
6
6
1
0
4
+ Addedfs.realpath@^1.0.0
+ Addedfs.realpath@1.0.0(transitive)