Update the bundled node-glob to v3.1.6.

This commit is contained in:
Nathan Rajlich 2012-03-12 16:55:07 -07:00
parent 8a9b11a51a
commit c3d0e41229
10 changed files with 161 additions and 38 deletions

2
node_modules/glob/glob.js generated vendored
View file

@ -43,7 +43,7 @@ var fs = require("graceful-fs")
, EE = require("events").EventEmitter , EE = require("events").EventEmitter
, path = require("path") , path = require("path")
, isDir = {} , isDir = {}
, assert = require("assert") , assert = require("assert").ok
function glob (pattern, options, cb) { function glob (pattern, options, cb) {
if (typeof options === "function") cb = options, options = {} if (typeof options === "function") cb = options, options = {}

View file

@ -1,5 +1,9 @@
{ {
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", "author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"name": "fast-list", "name": "fast-list",
"description": "A fast linked list (good for queues, stacks, etc.)", "description": "A fast linked list (good for queues, stacks, etc.)",
"version": "1.0.2", "version": "1.0.2",
@ -16,5 +20,19 @@
"scripts": { "scripts": {
"test": "tap test.js", "test": "tap test.js",
"bench": "node bench.js" "bench": "node bench.js"
} },
"_npmUser": {
"name": "tootallnate",
"email": "nathan@tootallnate.net"
},
"_id": "fast-list@1.0.2",
"optionalDependencies": {},
"engines": {
"node": "*"
},
"_engineSupported": true,
"_npmVersion": "1.1.4",
"_nodeVersion": "v0.6.12",
"_defaultsLoaded": true,
"_from": "fast-list@1"
} }

View file

@ -1,5 +1,9 @@
{ {
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", "author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me"
},
"name": "graceful-fs", "name": "graceful-fs",
"description": "fs monkey-patching to avoid EMFILE and other problems", "description": "fs monkey-patching to avoid EMFILE and other problems",
"version": "1.1.5", "version": "1.1.5",
@ -14,5 +18,16 @@
"dependencies": { "dependencies": {
"fast-list": "1" "fast-list": "1"
}, },
"devDependencies": {} "devDependencies": {},
"_npmUser": {
"name": "tootallnate",
"email": "nathan@tootallnate.net"
},
"_id": "graceful-fs@1.1.5",
"optionalDependencies": {},
"_engineSupported": true,
"_npmVersion": "1.1.4",
"_nodeVersion": "v0.6.12",
"_defaultsLoaded": true,
"_from": "graceful-fs@~1.1.2"
} }

View file

@ -1,7 +1,38 @@
{ "name" : "inherits" {
, "description": "A tiny simple way to do classic inheritance in js" "name": "inherits",
, "version" : "1.0.0" "description": "A tiny simple way to do classic inheritance in js",
, "keywords" : ["inheritance", "class", "klass", "oop", "object-oriented"] "version": "1.0.0",
, "main" : "./inherits.js" "keywords": [
, "repository" : "https://github.com/isaacs/inherits" "inheritance",
, "author" : "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)" } "class",
"klass",
"oop",
"object-oriented"
],
"main": "./inherits.js",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/inherits.git"
},
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"_npmUser": {
"name": "tootallnate",
"email": "nathan@tootallnate.net"
},
"_id": "inherits@1.0.0",
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"_engineSupported": true,
"_npmVersion": "1.1.4",
"_nodeVersion": "v0.6.12",
"_defaultsLoaded": true,
"_from": "inherits@1"
}

View file

@ -1,13 +1,39 @@
{ "name": "lru-cache" {
, "description": "A cache object that deletes the least-recently-used items." "name": "lru-cache",
, "version": "1.0.5" "description": "A cache object that deletes the least-recently-used items.",
, "author": "Isaac Z. Schlueter <i@izs.me>" "version": "1.0.5",
, "scripts": { "test": "tap test" } "author": {
, "main": "lib/lru-cache.js" "name": "Isaac Z. Schlueter",
, "repository": "git://github.com/isaacs/node-lru-cache.git" "email": "i@izs.me"
, "devDependencies": { "tap": "0.1" } },
, "license": "scripts": {
{ "type": "MIT" "test": "tap test"
, "url": "http://github.com/isaacs/node-lru-cache/raw/master/LICENSE" },
} "main": "lib/lru-cache.js",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-lru-cache.git"
},
"devDependencies": {
"tap": "0.1"
},
"license": {
"type": "MIT",
"url": "http://github.com/isaacs/node-lru-cache/raw/master/LICENSE"
},
"_npmUser": {
"name": "tootallnate",
"email": "nathan@tootallnate.net"
},
"_id": "lru-cache@1.0.5",
"dependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"_engineSupported": true,
"_npmVersion": "1.1.4",
"_nodeVersion": "v0.6.12",
"_defaultsLoaded": true,
"_from": "lru-cache@~1.0.5"
} }

View file

@ -1,5 +1,9 @@
{ {
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", "author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me"
},
"name": "minimatch", "name": "minimatch",
"description": "a glob matcher in javascript", "description": "a glob matcher in javascript",
"version": "0.2.0", "version": "0.2.0",
@ -20,10 +24,21 @@
"devDependencies": { "devDependencies": {
"tap": "~0.1.3" "tap": "~0.1.3"
}, },
"licenses" : [ "licenses": [
{ {
"type" : "MIT", "type": "MIT",
"url" : "http://github.com/isaacs/minimatch/raw/master/LICENSE" "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE"
} }
] ],
"_npmUser": {
"name": "tootallnate",
"email": "nathan@tootallnate.net"
},
"_id": "minimatch@0.2.0",
"optionalDependencies": {},
"_engineSupported": true,
"_npmVersion": "1.1.4",
"_nodeVersion": "v0.6.12",
"_defaultsLoaded": true,
"_from": "minimatch@0.2"
} }

30
node_modules/glob/package.json generated vendored
View file

@ -1,8 +1,12 @@
{ {
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", "author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"name": "glob", "name": "glob",
"description": "a little globber", "description": "a little globber",
"version": "3.1.4", "version": "3.1.6",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/isaacs/node-glob.git" "url": "git://github.com/isaacs/node-glob.git"
@ -17,11 +21,25 @@
"inherits": "1" "inherits": "1"
}, },
"devDependencies": { "devDependencies": {
"tap": "0.1", "tap": "~0.2.3",
"mkdirp":"0.2", "mkdirp": "0",
"rimraf":"1" "rimraf": "1"
}, },
"scripts": { "scripts": {
"test": "tap test/*.js" "test": "tap test/*.js"
} },
"_npmUser": {
"name": "tootallnate",
"email": "nathan@tootallnate.net"
},
"_id": "glob@3.1.6",
"optionalDependencies": {},
"_engineSupported": true,
"_npmVersion": "1.1.4",
"_nodeVersion": "v0.6.12",
"_defaultsLoaded": true,
"dist": {
"shasum": "df1a2c7e4b3e2e8e5a977f67adc55ef0788e66cf"
},
"_from": "glob@3.1.6"
} }

2
node_modules/glob/test/cwd-test.js generated vendored
View file

@ -4,7 +4,7 @@ var origCwd = process.cwd()
process.chdir(__dirname) process.chdir(__dirname)
tap.test("changing cwd and searching for **/d", function (t) { tap.test("changing cwd and searching for **/d", function (t) {
var glob = require('glob') var glob = require('../')
var path = require('path') var path = require('path')
t.test('.', function (t) { t.test('.', function (t) {
glob('**/d', function (er, matches) { glob('**/d', function (er, matches) {

View file

@ -4,7 +4,7 @@ var origCwd = process.cwd()
process.chdir(__dirname) process.chdir(__dirname)
tap.test("changing root and searching for /b*/**", function (t) { tap.test("changing root and searching for /b*/**", function (t) {
var glob = require('glob') var glob = require('../')
var path = require('path') var path = require('path')
t.test('.', function (t) { t.test('.', function (t) {
glob('/b*/**', { globDebug: true, root: '.', nomount: true }, function (er, matches) { glob('/b*/**', { globDebug: true, root: '.', nomount: true }, function (er, matches) {

2
node_modules/glob/test/root.js generated vendored
View file

@ -4,7 +4,7 @@ var origCwd = process.cwd()
process.chdir(__dirname) process.chdir(__dirname)
tap.test("changing root and searching for /b*/**", function (t) { tap.test("changing root and searching for /b*/**", function (t) {
var glob = require('glob') var glob = require('../')
var path = require('path') var path = require('path')
t.test('.', function (t) { t.test('.', function (t) {
glob('/b*/**', { globDebug: true, root: '.' }, function (er, matches) { glob('/b*/**', { globDebug: true, root: '.' }, function (er, matches) {