JS-DevTools / globify

Run browserify and watchify with globs - even on Windows!
https://jstools.dev/globify/
MIT License
16 stars 6 forks source link

Output to file next to input file #4

Closed franciscolourenco closed 8 years ago

franciscolourenco commented 8 years ago

I'm trying to find all .coffee files in my directory tree and have globify output .js files next to them. Is this possible without having a single directory as a destination?

JamesMessinger commented 8 years ago

Yep, you should be able to do that with something like this:

globify **/*.coffee --outfile=*.js
franciscolourenco commented 8 years ago

Great, thanks!