- Have a directory with a bunch of various js files, a subset of which are relevant for a particular .html application-root
- in my_subset.js, //= require foo.js
- in foo.js, //= require bar.js
- use gulp.src("*/.js") and cog("my_subset.js") in gulpfile
Result: bar.js is not expanded, and its content is not available
Expected: contents of bar.js and its requires should arrive in the output