diff --git a/index.js b/index.js index 6684064..49a6776 100644 --- a/index.js +++ b/index.js @@ -196,8 +196,10 @@ Deps.prototype.resolve = function (id, parent, cb) { Deps.prototype.readFile = function (file, id, pkg) { var self = this; if (xhas(this.fileCache, file)) { + var c = this.fileCache[file]; + if (typeof c.pipe === 'function') return c; var tr = through(); - tr.push(this.fileCache[file]); + tr.push(c); tr.push(null); return tr; } diff --git a/package.json b/package.json index 43a7bec..935dd22 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,9 @@ "xtend": "^4.0.0" }, "devDependencies": { - "tap": "^1.0.0", - "browser-pack": "^5.0.0" + "browser-pack": "^5.0.0", + "from2-string": "^1.1.0", + "tap": "^1.0.0" }, "scripts": { "test": "tap test/*.js" diff --git a/test/file_cache.js b/test/file_cache.js index 0a03c87..9e483c5 100644 --- a/test/file_cache.js +++ b/test/file_cache.js @@ -2,20 +2,24 @@ var mdeps = require('../'); var test = require('tap').test; var path = require('path'); var through = require('through2'); +var fromString = require('from2-string'); var files = { foo: path.join(__dirname, '/files/foo.js'), - bar: path.join(__dirname, '/files/bar.js') + bar: path.join(__dirname, '/files/bar.js'), + extra: path.join(__dirname, '/files/extra.js') }; var sources = { - foo: 'require("./bar"); var tongs;', - bar: 'notreal tongs' + foo: 'require("./bar"); require("./extra"); var tongs;', + bar: 'notreal tongs', + extra: 'notreal tongs' }; var fileCache = {}; fileCache[files.foo] = sources.foo; fileCache[files.bar] = sources.bar; +fileCache[files.extra] = fromString(sources.extra); var specialReplace = function(input) { return input.replace(/tongs/g, 'tangs'); @@ -43,13 +47,22 @@ test('uses file cache', function (t) { id: 'foo', file: files.foo, source: specialReplace(sources.foo), - deps: { './bar': files.bar } + deps: { + './bar': files.bar, + './extra': files.extra + } }, { id: files.bar, file: files.bar, source: specialReplace(sources.bar), deps: {} + }, + { + id: files.extra, + file: files.extra, + source: specialReplace(sources.extra), + deps: {} } ].sort(cmp)); });