Merge pull request #9709 from mbudde/patch-1

nit: Don't recompute filename hash
This commit is contained in:
Tobias Koppers 2019-09-23 09:21:12 +02:00 committed by GitHub
commit a97e8d6516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ module.exports = class SplitChunksPlugin {
name =
name.slice(0, sliceLength) +
automaticNameDelimiter +
hashFilename(name);
hashedFilename;
}
cacheEntry[cacheGroup] = name;
return name;