Add index paths in tar processing.

This commit is contained in:
Chad Weider 2012-05-11 18:12:50 -07:00
parent a5653c7192
commit 3b40850195
1 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,10 @@ for (var key in tar) {
tar[key].map(prefixLocalLibraryPath).map(function (p) {
return p.replace(/\.js$/, '');
})
).concat(
tar[key].map(prefixLocalLibraryPath).map(function (p) {
return p.replace(/\.js$/, '') + '/index.js';
})
);
}