This commit is contained in:
adueck 2024-08-06 16:37:41 -04:00
parent 9ee16463e8
commit dee417aa05
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import * as T from "./src/types"; import * as T from "./src/types";
import { inflectWord } from "./src/lib/src/pashto-inflector"; import { inflectWord } from "./src/lib/src/pashto-inflector";
import * as tp from "./src/lib/src/type-predicates"; import * as tp from "./src/lib/src/type-predicates";
import { conjugateVerb } from "./src/lib/src/verb-conjugation";
// Script to try inflecting all the words in the dictionary and make sure that // Script to try inflecting all the words in the dictionary and make sure that
// no errors are thrown in the process // no errors are thrown in the process
@ -39,6 +40,7 @@ async function checkAll() {
f: entry.f, f: entry.f,
err: "verb complement missing", err: "verb complement missing",
}); });
} else {
} }
} }
}); });

View File

@ -28,7 +28,7 @@
"react-bootstrap": "^1.5.1", "react-bootstrap": "^1.5.1",
"react-dom": "^17.0.1", "react-dom": "^17.0.1",
"react-scripts": "4.0.3", "react-scripts": "4.0.3",
"tsx": "^4.16.5", "tsx": "^3.14.0",
"typescript": "^5.1.6", "typescript": "^5.1.6",
"web-vitals": "^1.0.1" "web-vitals": "^1.0.1"
}, },