a browserify transform for anything
like coffeescript:
browserify -t [ anyify --coffee [ coffee-script?compile ] ]
for a file extension (--coffee) load a thing (coffee-script) and do a thing (compile)
var bundle = browserify(...);
bundle.transform('anyify', {
'coffee': 'coffee-script?compile'
});MIT