exclude /packages/ folders from shredding

This commit is contained in:
Jay Traband 2015-10-14 17:12:31 -07:00 committed by Naomi Black
parent b7216f656a
commit b65d0e530b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ var _apiShredOptions = {
};
var _excludePatterns = ["**/node_modules/**", "**/typings/**"];
var _excludePatterns = ['**/node_modules/**', '**/typings/**', '**/packages/**'];
var _excludeMatchers = _excludePatterns.map(function(excludePattern){
return new Minimatch(excludePattern)