update dictionary type

This commit is contained in:
Bill D 2021-03-16 14:07:30 +04:00
parent 68ffd49c4a
commit a6f935fc52
1 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,7 @@
const fs = require("fs"); const fs = require("fs");
const fetch = require("node-fetch"); const fetch = require("node-fetch");
const path = require("path"); const path = require("path");
const { readDictionary } = require("@lingdocs/pashto-inflector");
const collectionPath = path.join(".", "verbs"); const collectionPath = path.join(".", "verbs");
const verbTsFiles = fs.readdirSync(collectionPath) const verbTsFiles = fs.readdirSync(collectionPath)
@ -17,8 +18,9 @@ const allTsS = [...new Set(verbTsFiles.reduce((arr, fileName) => {
return [...arr, ...TsS]; return [...arr, ...TsS];
}, []))]; }, []))];
fetch(process.env.LINGDOCS_DICTIONARY_URL).then(res => res.json()).then(data => { fetch(process.env.LINGDOCS_DICTIONARY_URL).then(res => res.arrayBuffer()).then(buffer => {
const entries = data.entries; const dictionary = readDictionary(buffer);
const entries = dictionary.entries;
const allVerbs = getFromTsS(entries); const allVerbs = getFromTsS(entries);
const content = ` const content = `
/** /**