use same hash format as webpack defaults

pull/8710/head
Bruno Windels 2019-02-20 09:39:27 +01:00
parent c2d14392b2
commit e56206241b
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ function genLangFile(lang, dest) {
const json = JSON.stringify(translations, null, 4);
const jsonBuffer = Buffer.from(json);
const digest = loaderUtils.getHashDigest(jsonBuffer, "sha512", "base64", 7);
const digest = loaderUtils.getHashDigest(jsonBuffer, null, null, 7);
const filename = `${lang}.${digest}.json`;
fs.writeFileSync(dest + filename, json);