Merge pull request #24 from ddude/master

added retrieveFile option
This commit is contained in:
Evan Wallace 2014-04-26 12:17:44 -07:00
commit f8930e837c

View File

@ -260,6 +260,11 @@ exports.install = function(options) {
emptyCacheBetweenOperations = 'emptyCacheBetweenOperations' in options ?
options.emptyCacheBetweenOperations : false;
// Allow sources to be found by methods other than reading the files
// directly from disk.
if (options.retrieveFile)
retrieveFile = options.retrieveFile;
// Allow source maps to be found by methods other than reading the files
// directly from disk.
if (options.retrieveSourceMap)