This commit is contained in:
Joseph Garrone
2021-03-04 14:30:59 +01:00
parent 6738f6f6cf
commit 57502a57af
5 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ crawl(".").forEach(filePath => {
const [, typeOfPage, language] = match;
(record[typeOfPage] ??= {})[language] =
(record[typeOfPage] ??= {})[language.replace(/_/g,"-")] =
propertiesParser.parse(
fs.readFileSync(filePath)
.toString("utf8")