more exposure
This commit is contained in:
parent
41ffa90e5a
commit
65c94c8810
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/pashto-inflector",
|
"name": "@lingdocs/pashto-inflector",
|
||||||
"version": "2.4.4",
|
"version": "2.4.5",
|
||||||
"author": "lingdocs.com",
|
"author": "lingdocs.com",
|
||||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||||
"homepage": "https://verbs.lingdocs.com",
|
"homepage": "https://verbs.lingdocs.com",
|
||||||
|
|
|
@ -96,6 +96,7 @@ import {
|
||||||
personGender,
|
personGender,
|
||||||
parseEc,
|
parseEc,
|
||||||
personNumber,
|
personNumber,
|
||||||
|
randFromArray,
|
||||||
} from "./lib/misc-helpers";
|
} from "./lib/misc-helpers";
|
||||||
import {
|
import {
|
||||||
simplifyPhonetics,
|
simplifyPhonetics,
|
||||||
|
@ -115,6 +116,16 @@ import {
|
||||||
import {
|
import {
|
||||||
makeNounSelection,
|
makeNounSelection,
|
||||||
} from "./components/np-picker/picker-tools";
|
} from "./components/np-picker/picker-tools";
|
||||||
|
import {
|
||||||
|
renderEP,
|
||||||
|
} from "./lib/phrase-building/render-ep";
|
||||||
|
import {
|
||||||
|
renderVP,
|
||||||
|
} from "./lib/phrase-building/render-vp";
|
||||||
|
import {
|
||||||
|
compileEP,
|
||||||
|
compileVP,
|
||||||
|
} from "./lib/phrase-building/compile";
|
||||||
import NPPicker from "./components/np-picker/NPPicker";
|
import NPPicker from "./components/np-picker/NPPicker";
|
||||||
import EPExplorer from "./components/ep-explorer/EPExplorer";
|
import EPExplorer from "./components/ep-explorer/EPExplorer";
|
||||||
import shuffleArray from "./lib/shuffle-array";
|
import shuffleArray from "./lib/shuffle-array";
|
||||||
|
@ -177,6 +188,11 @@ export {
|
||||||
shuffleArray,
|
shuffleArray,
|
||||||
personNumber,
|
personNumber,
|
||||||
makeNounSelection,
|
makeNounSelection,
|
||||||
|
randFromArray,
|
||||||
|
renderEP,
|
||||||
|
renderVP,
|
||||||
|
compileEP,
|
||||||
|
compileVP,
|
||||||
// protobuf helpers
|
// protobuf helpers
|
||||||
readDictionary,
|
readDictionary,
|
||||||
writeDictionary,
|
writeDictionary,
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue