Revert "Finish file-based support for now"
This reverts commit 0a798422dac0d9c03b164637bebd80b1c6abd1eb.
This commit is contained in:
parent
209a9d50c9
commit
bdf1215c05
1 changed files with 1 additions and 13 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue