From 194551fdbf59f294c97cec9632b0a4b80aa7d4da Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 May 2012 23:40:18 -0400 Subject: [PATCH] Make build.js less picky about comma separated method names. Former-commit-id: 8624cfaad62ddd4921baaea1ece20730ced680bf --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index 841ae6cc4..9b88cec17 100755 --- a/build.js +++ b/build.js @@ -372,7 +372,7 @@ } var filterType = pair[1], - filterNames = lodash.intersection(Object.keys(dependencyMap), pair[2].split(',').map(getRealName)); + filterNames = lodash.intersection(Object.keys(dependencyMap), pair[2].split(/, */).map(getRealName)); // set custom build flag isCustom = true;