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:
Diffstat (limited to 'node_modules/glob')
-rw-r--r--node_modules/glob/glob.js2
-rw-r--r--node_modules/glob/package.json5
-rw-r--r--node_modules/glob/test/bash-results.json1
-rw-r--r--node_modules/glob/test/nocase-nomagic.js2
4 files changed, 4 insertions, 6 deletions
diff --git a/node_modules/glob/glob.js b/node_modules/glob/glob.js
index f0118a4f4..176be02f4 100644
--- a/node_modules/glob/glob.js
+++ b/node_modules/glob/glob.js
@@ -36,7 +36,7 @@
module.exports = glob
-var fs = require("graceful-fs")
+var fs = require("fs")
, minimatch = require("minimatch")
, Minimatch = minimatch.Minimatch
, inherits = require("inherits")
diff --git a/node_modules/glob/package.json b/node_modules/glob/package.json
index fe224bd21..73aa885e7 100644
--- a/node_modules/glob/package.json
+++ b/node_modules/glob/package.json
@@ -6,7 +6,7 @@
},
"name": "glob",
"description": "a little globber",
- "version": "3.2.3",
+ "version": "3.2.6",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-glob.git"
@@ -17,7 +17,6 @@
},
"dependencies": {
"minimatch": "~0.2.11",
- "graceful-fs": "~2.0.0",
"inherits": "2"
},
"devDependencies": {
@@ -34,6 +33,6 @@
"bugs": {
"url": "https://github.com/isaacs/node-glob/issues"
},
- "_id": "glob@3.2.3",
+ "_id": "glob@3.2.6",
"_from": "glob@latest"
}
diff --git a/node_modules/glob/test/bash-results.json b/node_modules/glob/test/bash-results.json
index a9bc347de..3ffadba68 100644
--- a/node_modules/glob/test/bash-results.json
+++ b/node_modules/glob/test/bash-results.json
@@ -283,7 +283,6 @@
"{./*/*,/tmp/glob-test/*}": [
"./examples/g.js",
"./examples/usr-local.js",
- "./node_modules/graceful-fs",
"./node_modules/inherits",
"./node_modules/minimatch",
"./node_modules/mkdirp",
diff --git a/node_modules/glob/test/nocase-nomagic.js b/node_modules/glob/test/nocase-nomagic.js
index d86297098..2503f2310 100644
--- a/node_modules/glob/test/nocase-nomagic.js
+++ b/node_modules/glob/test/nocase-nomagic.js
@@ -1,4 +1,4 @@
-var fs = require('graceful-fs');
+var fs = require('fs');
var test = require('tap').test;
var glob = require('../');