From 3d1cbd1092b777a7f6237503bd2f2ddc8360d4cd Mon Sep 17 00:00:00 2001 From: Ryan Ghods Date: Wed, 31 May 2023 20:51:43 -0700 Subject: [PATCH] make postinstall script nonblocking on error (#1015) * make postinstall script nonblocking on error * bump patch version --------- Co-authored-by: JoshuaSchmidt-OpenSea --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1040216f1..5193bd5aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opensea-js", - "version": "6.0.0", + "version": "6.0.1", "description": "JavaScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs and our marketplace data!", "license": "MIT", "author": "OpenSea Developers", @@ -18,7 +18,7 @@ "src" ], "scripts": { - "postinstall": "husky install", + "postinstall": "husky install || true", "prepare": "npm run build", "build": "npm run abi-type-gen && tsc -p tsconfig.build.json && npm run bundle", "bundle": "browserify lib/index.js -o lib/bundle.js",