-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Charles Jolley
committed
May 2, 2012
1 parent
2d1ed27
commit cea59b9
Showing
14 changed files
with
150 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
// Borrowed from resolve package | ||
// modified to have a more refined use of 'main' | ||
|
||
var fs = require('fs'); | ||
var path = require('path'); | ||
|
||
// taken from `ls -1 lib` in node 0.6.11 | ||
var core = exports.core = [ | ||
'assert', 'buffer_ieee754', 'buffer', 'child_process', 'cluster', 'console', | ||
'constants', 'crypto', '_debugger', 'dgram', 'dns', 'events', 'freelist', | ||
'fs', 'http', 'https', '_linklist', 'module', 'net', 'os', 'path', | ||
'punycode', 'querystring', 'readline', 'repl', 'stream', 'string_decoder', | ||
'sys', 'timers', 'tls', 'tty', 'url', 'util', 'vm', 'zlib' | ||
].reduce(function (acc, x) { acc[x] = true; return acc }, {}); | ||
|
||
exports.isCore = function (x) { return core[x] }; | ||
|
||
exports.sync = function (x, opts) { | ||
if (core[x]) return x; | ||
|
||
if (!opts) opts = {}; | ||
var isFile = opts.isFile || function (file) { | ||
return path.existsSync(file) && fs.statSync(file).isFile() | ||
}; | ||
var readFileSync = opts.readFileSync || fs.readFileSync; | ||
|
||
var mainKey = opts.mainKey; | ||
var extensions = opts.extensions || [ '.js' ]; | ||
var y = opts.basedir | ||
|| path.dirname(require.cache[__filename].parent.filename) | ||
; | ||
|
||
opts.paths = opts.paths || []; | ||
|
||
if (x.match(/^(?:\.\.?\/|\/|([A-Za-z]:)?\\)/)) { | ||
var m = loadAsFileSync(path.resolve(y, x)) | ||
|| loadAsDirectorySync(path.resolve(y, x)); | ||
if (m) return m; | ||
} | ||
|
||
var n = loadNodeModulesSync(x, y); | ||
if (n) return n; | ||
|
||
throw new Error("Cannot find module '" + x + "'"); | ||
|
||
function loadAsFileSync (x) { | ||
if (isFile(x)) { | ||
return x; | ||
} | ||
|
||
for (var i = 0; i < extensions.length; i++) { | ||
var file = x + extensions[i]; | ||
if (isFile(file)) { | ||
return file; | ||
} | ||
} | ||
} | ||
|
||
function loadAsDirectorySync (x) { | ||
var pkgfile = path.join(x, '/package.json'); | ||
if (isFile(pkgfile)) { | ||
var body = readFileSync(pkgfile, 'utf8'); | ||
try { | ||
var pkg = JSON.parse(body); | ||
if (opts.packageFilter) { | ||
pkg = opts.packageFilter(pkg); | ||
} | ||
|
||
if (pkg[mainKey]) { | ||
var m = loadAsFileSync(path.resolve(x, pkg[mainKey])); | ||
if (m) return m; | ||
} | ||
} | ||
catch (err) {} | ||
} | ||
|
||
return loadAsFileSync(path.join( x, '/index')); | ||
} | ||
|
||
function loadNodeModulesSync (x, start) { | ||
var dirs = nodeModulesPathsSync(start); | ||
for (var i = 0; i < dirs.length; i++) { | ||
var dir = dirs[i]; | ||
var m = loadAsFileSync(path.join( dir, '/', x)); | ||
if (m) return m; | ||
var n = loadAsDirectorySync(path.join( dir, '/', x )); | ||
if (n) return n; | ||
} | ||
} | ||
|
||
function nodeModulesPathsSync (start) { | ||
var splitRe = process.platform === 'win32' ? /[\/\\]/ : /\/+/; | ||
var parts = start.split(splitRe); | ||
|
||
var dirs = []; | ||
for (var i = parts.length - 1; i >= 0; i--) { | ||
if (parts[i] === 'node_modules') continue; | ||
var dir = path.join( | ||
path.join.apply(path, parts.slice(0, i + 1)), | ||
'node_modules' | ||
); | ||
if (!parts[0].match(/([A-Za-z]:)/)) { | ||
dir = '/' + dir; | ||
} | ||
dirs.push(dir); | ||
} | ||
return opts.paths.concat(dirs); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
--require should | ||
--growl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters