From dee417aa05457ab1fcac1397596c407afd07c488 Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 6 Aug 2024 16:37:41 -0400 Subject: [PATCH] ci fix --- check-all-inflections.ts | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/check-all-inflections.ts b/check-all-inflections.ts index 9e7d791..55aad43 100644 --- a/check-all-inflections.ts +++ b/check-all-inflections.ts @@ -1,6 +1,7 @@ import * as T from "./src/types"; import { inflectWord } from "./src/lib/src/pashto-inflector"; 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 // no errors are thrown in the process @@ -39,6 +40,7 @@ async function checkAll() { f: entry.f, err: "verb complement missing", }); + } else { } } }); diff --git a/package.json b/package.json index 63c3805..6fd4160 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "react-bootstrap": "^1.5.1", "react-dom": "^17.0.1", "react-scripts": "4.0.3", - "tsx": "^4.16.5", + "tsx": "^3.14.0", "typescript": "^5.1.6", "web-vitals": "^1.0.1" },