added retrieveFile option

This commit is contained in:
Jeremie Pelletier 2013-12-03 15:49:34 -05:00
parent e7b02406fd
commit fffaca5b2f

View File

@ -230,6 +230,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)