globify icon indicating copy to clipboard operation
globify copied to clipboard

Run browserify and watchify with globs - even on Windows!

Results 3 globify issues
Sort by recently updated
recently updated
newest added

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.

bug

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...

enhancement