[lodash] fix missed _.flattenDeep() upgrade

This commit is contained in:
spalger
2018-07-03 12:36:16 -07:00
parent 2d4fe2f83a
commit 0a924eb0f1

View File

@ -175,7 +175,7 @@ function clearGeneratedFiles() {
generatedFiles.push(dirRegex(paths.src, esArchives));
var rmSteps = _.chain(generatedFiles)
.flatten()
.flattenDeep()
.uniq()
.map(function (path) {
return spawnStep('rm', ['-rf', path]);