From 8bcdfa279369b25bf92cc183e485dc176e929902 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 1 Oct 2012 08:31:23 -0700 Subject: [PATCH] Add `identity`dependencies to build dependency map. Former-commit-id: e466c8547888755b9e3d645d555298b21b5a6849 --- build.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.js b/build.js index b601c88cd..776328a76 100755 --- a/build.js +++ b/build.js @@ -71,7 +71,7 @@ 'compact': [], 'compose': [], 'contains': [], - 'countBy': [], + 'countBy': ['identity'], 'debounce': [], 'defaults': ['isArguments'], 'defer': [], @@ -81,14 +81,14 @@ 'every': ['identity'], 'extend': ['isArguments'], 'filter': ['identity'], - 'find': [], + 'find': ['identity'], 'first': [], 'flatten': ['isArray'], - 'forEach': [], - 'forIn': ['isArguments'], - 'forOwn': ['isArguments'], + 'forEach': ['identity'], + 'forIn': ['identity', 'isArguments'], + 'forOwn': ['identity', 'isArguments'], 'functions': ['isArguments', 'isFunction'], - 'groupBy': [], + 'groupBy': ['identity'], 'has': [], 'identity': [], 'indexOf': ['sortedIndex'], @@ -133,7 +133,7 @@ 'pluck': [], 'random': [], 'range': [], - 'reduce': [], + 'reduce': ['identity'], 'reduceRight': ['forEach', 'keys'], 'reject': ['identity'], 'rest': [], @@ -141,7 +141,7 @@ 'shuffle': [], 'size': ['keys'], 'some': ['identity'], - 'sortBy': [], + 'sortBy': ['identity'], 'sortedIndex': ['identity'], 'tap': ['mixin'], 'template': ['escape'],