exclude /packages/ folders from shredding
This commit is contained in:
parent
b7216f656a
commit
b65d0e530b
|
@ -36,7 +36,7 @@ var _apiShredOptions = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
var _excludePatterns = ["**/node_modules/**", "**/typings/**"];
|
var _excludePatterns = ['**/node_modules/**', '**/typings/**', '**/packages/**'];
|
||||||
|
|
||||||
var _excludeMatchers = _excludePatterns.map(function(excludePattern){
|
var _excludeMatchers = _excludePatterns.map(function(excludePattern){
|
||||||
return new Minimatch(excludePattern)
|
return new Minimatch(excludePattern)
|
||||||
|
|
Loading…
Reference in New Issue