ForbesLindesay / browserify-middleware

express middleware for browserify, done right
http://browserify.org
MIT License
381 stars 66 forks source link

Add support for array of paths #55

Closed yamalight closed 10 years ago

yamalight commented 10 years ago

Would it be possible to add support for arrays of paths? Like so:

var files = ['./client/app.js', './other/index.js'];
app.get('/js/app.min.js', browserify(files));
yamalight commented 10 years ago

oh, okay, my bad. it actually works, just paths inside of the files must be correct.