oops
This commit is contained in:
parent
19a87a2ca5
commit
c4c2f93a6d
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lingdocs/pashto-inflector",
|
||||
"version": "3.7.7",
|
||||
"version": "3.7.8",
|
||||
"author": "lingdocs.com",
|
||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||
"homepage": "https://verbs.lingdocs.com",
|
||||
|
|
|
@ -89,10 +89,10 @@ function compileVPPs(blocks: T.Block[][], kids: T.Kid[], form: T.FormVersion, ki
|
|||
: lengthyBlock?.ps;
|
||||
if (potentialLengthy && "long" in potentialLengthy) {
|
||||
return {
|
||||
long: compileVPPs(specifyBlockLength(blocks, "long"), kids, form, king) as T.PsString[],
|
||||
short: compileVPPs(specifyBlockLength(blocks, "short"), kids, form, king) as T.PsString[],
|
||||
long: compileVPPs(specifyBlockLength(blocks, "long"), kids, form, king, blankOut) as T.PsString[],
|
||||
short: compileVPPs(specifyBlockLength(blocks, "short"), kids, form, king, blankOut) as T.PsString[],
|
||||
..."mini" in potentialLengthy ? {
|
||||
mini: compileVPPs(specifyBlockLength(blocks, "mini"), kids, form, king) as T.PsString[],
|
||||
mini: compileVPPs(specifyBlockLength(blocks, "mini"), kids, form, king, blankOut) as T.PsString[],
|
||||
} : {},
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue