Skip to content

Commit

Permalink
fix(plain css): Due to the odd nature of 'glob', you can't have a set…
Browse files Browse the repository at this point in the history
… of just one item.

so adding an extra ',' at the end so that you will always have at least two "items" in the set

Closes #178, #204
  • Loading branch information
webark committed Jan 26, 2017
1 parent 134adad commit fd0d770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
return new Funnel(this.projectRoot, {
srcDir: this._podDirectory(),
exclude: ['styles/**/*'],
include: ['**/*.{' + this.allowedStyleExtensions + '}'],
include: ['**/*.{' + this.allowedStyleExtensions + ',}'],
allowEmpty: true,
annotation: 'Funnel (ember-component-css grab files)'
});
Expand Down

0 comments on commit fd0d770

Please sign in to comment.