From be8cbf92fb6e6456bb5d29de1ec7d6d6368c3b3e Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Mon, 30 Mar 2026 22:25:05 -0700 Subject: [PATCH] build: drop redundant npx prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit typedoc and lint-staged are both devDependencies — npx is redundant. Use yarn in the pre-commit hook to match the rest of the project. --- .husky/pre-commit | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 2312dc58..37236231 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1 +1 @@ -npx lint-staged +yarn lint-staged diff --git a/package.json b/package.json index 9e14074f..97767873 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ }, "scripts": { "build": "tsc", - "build:docs": "npx typedoc", + "build:docs": "typedoc", "eslint": "eslint --ext .ts src test", "lint": "npm run prettier && npm run eslint", "prepare": "husky",