gulpjs / glob-stream

Readable streamx interface over anymatch.
MIT License
178 stars 53 forks source link

Added test for multiple globs #6

Closed lazd closed 10 years ago

lazd commented 10 years ago

This should test https://github.com/wearefractal/glob-stream/issues/5

yocontra commented 10 years ago

Files don't have to return in the order that the globs were passed in. They get emitted as they are picked up from node-globs walk down the file system. The array in the test could be in order so it's failing right now on travis due to that race condition.

lazd commented 10 years ago

Order is a requirement for passing a list of JS files to concatenate. How should this be solved?

yocontra commented 10 years ago

I mean we could sequence all of the globs so the walking of globs happens one at a time... that would harm perf though.

Want to add an additional test for ordering and I'll merge it then work on getting it passing?