Add templateSettings to funcDependencyMap, add reNative to varDependencyMap, and simplify support property cleanup.

Former-commit-id: 0c55084b4479bb8213a3387fc246f36ca3f185dd
This commit is contained in:
John-David Dalton
2013-07-04 01:18:05 -07:00
parent c740562dd8
commit ce0f44fb47
2 changed files with 46 additions and 21 deletions

View File

@@ -1664,7 +1664,8 @@
// expand categories to function names
funcNames.slice().forEach(function(category) {
var otherNames = _.filter(categoryMap[category], function(key) {
return typeof _[key] == 'function';
var type = typeof _[key];
return type == 'function' || type == 'undefined';
});
// limit function names to those available for specific builds