From ae1745770d7194206dbd1edc7331d0622908088f Mon Sep 17 00:00:00 2001 From: Peter Johnson <738069+missinglink@users.noreply.github.com> Date: Mon, 26 Jan 2026 16:08:55 +0100 Subject: [PATCH] fix(build): pin npx dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1c02d76..a084318 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "types": "./dist/index.d.ts", "module": "./dist/s2js.esm.js", "scripts": { - "build": "npx tsdx build --entry index.ts", - "docs": "npx typedoc", + "build": "npx --yes tsdx@^0 build --entry index.ts", + "docs": "npx --yes typedoc", "test": "node --import tsx --test [^_]**/[^_]*_test.ts", "coverage": "npx c8 npm test", "lint": "npx prettier --check .",