Revert "Finish file-based support for now"

This reverts commit 0a798422dac0d9c03b164637bebd80b1c6abd1eb.
This commit is contained in:
Peter Newman 2022-10-19 17:58:36 +01:00 committed by Bryan Housel
parent 209a9d50c9
commit bdf1215c05

View file

@ -60,7 +60,7 @@ console.log('');
// Load, validate, cleanup config files
//
function loadConfig() {
['trees', 'replacements', 'genericWords', 'countryReplacements'].forEach(which => {
['trees', 'replacements', 'genericWords'].forEach(which => {
const schema = JSON5.parse(fs.readFileSync(`./schema/${which}.json`, 'utf8'));
const file = `config/${which}.json`;
const contents = fs.readFileSync(file, 'utf8');
@ -117,18 +117,6 @@ function loadConfig() {
} else if (which === 'genericWords') {
data.genericWords = data.genericWords.map(s => s.toLowerCase()).sort(withLocale);
} else if (which === 'countryReplacements') {
Object.keys(data.countryReplacements).forEach(country => {
let countryReplacement = data.countryReplacements[country];
let cleaned = {
note: countryReplacement.note,
country: countryReplacement.wikidata
};
countryReplacement = cleaned;
});
data.countryReplacements = sortObject(data.countryReplacements);
}
// Lowercase and sort the files for consistency, save them that way.