From 8eedc51febd6a630d4c2d401aeefb56f7f2bb868 Mon Sep 17 00:00:00 2001 From: Otto Allmendinger Date: Tue, 10 Feb 2026 16:05:58 +0100 Subject: [PATCH] feat(abstract-utxo): update check-fmt command path pattern Update the check-fmt script to use a more specific path pattern that targets only src and test directories, rather than checking all files. The step can freeze up otherwise. Issue: BTC-2650 Co-authored-by: llm-git --- modules/abstract-utxo/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/abstract-utxo/package.json b/modules/abstract-utxo/package.json index 18d6bd3826..926793eac8 100644 --- a/modules/abstract-utxo/package.json +++ b/modules/abstract-utxo/package.json @@ -27,7 +27,7 @@ "build:cjs": "yarn tsc --build --incremental --verbose .", "build:esm": "yarn tsc --project tsconfig.esm.json", "fmt": "prettier --write .", - "check-fmt": "prettier --check '**/*.{ts,js,json}'", + "check-fmt": "prettier --check '{src,test}/**/*.{ts,js,json}'", "clean": "rm -rf ./dist", "lint": "eslint --quiet .", "prepare": "npm run build",