From 4b991caa088fae83eab80480f71e6eb79918e710 Mon Sep 17 00:00:00 2001 From: ALECKS <0xalecks@gmail.com> Date: Wed, 8 Feb 2023 14:28:11 -0500 Subject: [PATCH] sdk: fix publish script --- projects/sdk/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/sdk/package.json b/projects/sdk/package.json index 2f6f4da75..14b087784 100644 --- a/projects/sdk/package.json +++ b/projects/sdk/package.json @@ -1,7 +1,7 @@ { "name": "@beanstalk/sdk", "version": "0.1.0", - "description": "A JavaScript framework for interacting with the Beanstalk protocol and ecosystem.", + "description": "A JavaScript framework for interacting with the Beanstalk protocol and ecosystem", "license": "MIT", "repository": { "type": "git", @@ -38,7 +38,7 @@ "dev": "tsc --noEmit --watch", "ts": "yarn clean:build && tsc && tsc-alias -p tsconfig.json", "build": "yarn ts && rollup -c --bundleConfigAsCjs --silent && rimraf dist/js", - "publish": "yarn build && yarn npm publish --access public" + "publish": "yarn clean && yarn generate && yarn build && yarn npm publish --access public" }, "peerDependencies": { "ethers": "5.6.8"