From bf7126cd9e3f6de9a65e603a57ad0ff2d3d58b92 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Wed, 28 Aug 2024 14:51:05 +0200 Subject: [PATCH] Pin 4.15.8 --- sphinx_js/typedoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx_js/typedoc.py b/sphinx_js/typedoc.py index d4e197bc..6810e882 100644 --- a/sphinx_js/typedoc.py +++ b/sphinx_js/typedoc.py @@ -67,7 +67,7 @@ def typedoc_output( env = os.environ.copy() env["TYPEDOC_NODE_MODULES"] = str(Path(typedoc).parents[3].resolve()) command = Command("npx") - command.add("tsx@4.9.2") + command.add("tsx@4.15.8") dir = Path(__file__).parent.resolve() / "js" command.add("--tsconfig", str(dir / "tsconfig.json")) command.add("--import", str(dir / "registerImportHook.mjs"))