Update Backbone build method dependencies.

Former-commit-id: 808b991f6cebc72c182ce8d0def370778cce0b05
This commit is contained in:
John-David Dalton
2012-11-15 23:51:49 -08:00
parent 76fa7affaf
commit d7c8041aa1
2 changed files with 13 additions and 2 deletions

View File

@@ -182,12 +182,15 @@
/** List of all Lo-Dash methods */ /** List of all Lo-Dash methods */
var allMethods = _.keys(dependencyMap); var allMethods = _.keys(dependencyMap);
/** List Backbone's Lo-Dash dependencies */ /** List of Backbone's Lo-Dash dependencies */
var backboneDependencies = [ var backboneDependencies = [
'bind', 'bind',
'bindAll', 'bindAll',
'chain',
'clone', 'clone',
'contains', 'contains',
'countBy',
'defaults',
'escape', 'escape',
'every', 'every',
'extend', 'extend',
@@ -206,14 +209,15 @@
'isFunction', 'isFunction',
'isObject', 'isObject',
'isRegExp', 'isRegExp',
'isString',
'keys', 'keys',
'last', 'last',
'lastIndexOf', 'lastIndexOf',
'lateBind',
'map', 'map',
'max', 'max',
'min', 'min',
'mixin', 'mixin',
'pick',
'reduce', 'reduce',
'reduceRight', 'reduceRight',
'reject', 'reject',
@@ -226,6 +230,7 @@
'sortedIndex', 'sortedIndex',
'toArray', 'toArray',
'uniqueId', 'uniqueId',
'value',
'without' 'without'
]; ];

View File

@@ -198,8 +198,11 @@
var backboneDependencies = [ var backboneDependencies = [
'bind', 'bind',
'bindAll', 'bindAll',
'chain',
'clone', 'clone',
'contains', 'contains',
'countBy',
'defaults',
'escape', 'escape',
'every', 'every',
'extend', 'extend',
@@ -218,6 +221,7 @@
'isFunction', 'isFunction',
'isObject', 'isObject',
'isRegExp', 'isRegExp',
'isString',
'keys', 'keys',
'last', 'last',
'lastIndexOf', 'lastIndexOf',
@@ -225,6 +229,7 @@
'max', 'max',
'min', 'min',
'mixin', 'mixin',
'pick',
'reduce', 'reduce',
'reduceRight', 'reduceRight',
'reject', 'reject',
@@ -237,6 +242,7 @@
'sortedIndex', 'sortedIndex',
'toArray', 'toArray',
'uniqueId', 'uniqueId',
'value',
'without' 'without'
]; ];