This commit is contained in:
Tobias Koppers 2012-04-07 21:57:02 +02:00
parent e3b94309da
commit 0535053e73
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "webpack",
"version": "0.3.3",
"version": "0.3.4",
"author": "Tobias Koppers @sokra",
"description": "Packs CommonJs Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loading of js, json, jade, coffee, css, ... out of the box and more with custom loaders.",
"dependencies": {

View File

@ -105,7 +105,7 @@ module.exports = function(req) {
var loaders = module.exports.options.resolve.loaders;
for(var i = 0; i < loaders.length; i++)
if(loaders[i].test.test(resolved))
return req(loader.loader + "!" + name);
return req(loaders[i].loader + "!" + name);
return oldReq(name);
}