use same hash format as webpack defaults
This commit is contained in:
parent
c2d14392b2
commit
e56206241b
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ function genLangFile(lang, dest) {
|
||||||
|
|
||||||
const json = JSON.stringify(translations, null, 4);
|
const json = JSON.stringify(translations, null, 4);
|
||||||
const jsonBuffer = Buffer.from(json);
|
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`;
|
const filename = `${lang}.${digest}.json`;
|
||||||
|
|
||||||
fs.writeFileSync(dest + filename, json);
|
fs.writeFileSync(dest + filename, json);
|
||||||
|
|
Loading…
Reference in a new issue