mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
Make build.js less picky about comma separated method names.
Former-commit-id: 8624cfaad62ddd4921baaea1ece20730ced680bf
This commit is contained in:
2
build.js
2
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;
|
||||
|
||||
Reference in New Issue
Block a user