broccolijs / broccoli-funnel

MIT License
66 stars 37 forks source link

globbing support? #24

Closed ghost closed 9 years ago

ghost commented 9 years ago

Hi, is it possible to provide wildcards / globbing when using the files option? For example: var someFiles = funnel('src', { files: ['*.html'] }); Thanks!

marcenuc commented 9 years ago

@lan3jur, the following works fine:

var someFiles = funnel('src', {
  include: ['**/*.html']
});
marcenuc commented 9 years ago

@lan3jur, see also #9

ghost commented 9 years ago

Sorry for late reply.. Indeed, it was my mistake, I made a terrible typo and didn't even notice it for days :( Sorry for the trouble..

stefanpenner commented 9 years ago

question appears to be answered, if I am mistaken leave a comment explaining why and we can reopen.