Skip to content

Commit

Permalink
fix #24, remove asset, dist, release, doc, dep from ignore list, ad…
Browse files Browse the repository at this point in the history
…d `bower_components`
  • Loading branch information
chriswong committed Nov 20, 2014
1 parent f9ae013 commit 4b3f967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ exports.buildPattern = function (dirs, extensions) {
};

var patterns = dirs.map(transform).filter(Boolean);
patterns.push('!**/{node_modules,asset,dist,release,doc,dep}/**');
patterns.push('!**/{node_modules,bower_components}/**');

return patterns;
};
Expand Down

0 comments on commit 4b3f967

Please sign in to comment.