From b65d0e530bfa7e05c208c9fc4b0c140fdb7e4568 Mon Sep 17 00:00:00 2001 From: Jay Traband Date: Wed, 14 Oct 2015 17:12:31 -0700 Subject: [PATCH] exclude /packages/ folders from shredding --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e4fce364a7..a3311e42a8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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)