globify
globify copied to clipboard
Run browserify and watchify with globs - even on Windows!
https://github.com/BigstickCarpet/globify/blob/master/lib/index.js#L49 Why is this here? It makes outputting to stdout instead of using --outfile useless because stdout contains a command before the browserify output.
Is there any reason you don't use the programmatic API of browserify/watchify Spawning a new process for every entry point seems slow to me. Would you accept a PR that...
The idea is to find all the `*` inside a string and replace the `*` with the file name like it is done for the `--outfile` paramenter. This is what...