From 02888359d50d813e53a257fe1f070d464a405c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noah=20Bayindirli=20=F0=9F=A5=82?= Date: Thu, 2 May 2024 15:24:48 -0400 Subject: [PATCH] do not exit if @safe-global/protocol-kit/**/Multi_send.ts dne (#3696) ### Description * do not exit if `@safe-global/protocol-kit/**/Multi_send.ts` dne * This fixes an issue where successfully building the sdk 2+ times exits out, when instead `tsc` should always be executed ### Drive-by changes * n/a ### Related issues * n/a ### Backward compatibility * yes ### Testing * manual --- typescript/sdk/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/sdk/package.json b/typescript/sdk/package.json index 1ae0e90295..bddccc7f46 100644 --- a/typescript/sdk/package.json +++ b/typescript/sdk/package.json @@ -66,7 +66,7 @@ ], "license": "Apache-2.0", "scripts": { - "build": "yarn build:fixSafeGlobalLib && tsc", + "build": "yarn build:fixSafeGlobalLib; tsc", "build:fixSafeGlobalLib": "rm -rf ../../node_modules/@safe-global/protocol-kit/dist/typechain/src/web3-v1/**/Multi_send.ts", "dev": "tsc --watch", "check": "tsc --noEmit",