mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 10:27: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],
|
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
|
// set custom build flag
|
||||||
isCustom = true;
|
isCustom = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user