From d208b99a816cd969e64e57e4c9708385a3136b7b Mon Sep 17 00:00:00 2001 From: Steve Rushby Date: Mon, 9 Dec 2024 20:45:53 +0000 Subject: [PATCH] chore: set declarationMap to false and fix release notes --- .github/workflows/ci-publish-package.yml | 10 +--------- package-lock.json | 4 ++-- package.json | 2 +- tsconfig.json | 2 +- 4 files changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci-publish-package.yml b/.github/workflows/ci-publish-package.yml index f5ef7e6..99efa3e 100644 --- a/.github/workflows/ci-publish-package.yml +++ b/.github/workflows/ci-publish-package.yml @@ -9,15 +9,6 @@ on: jobs: build-and-publish: runs-on: ubuntu-latest - env: - SEED_PHRASE_1: ${{ secrets.SEED_PHRASE_1 }} - SEED_PHRASE_2: ${{ secrets.SEED_PHRASE_2 }} - SEED_PHRASE_3: ${{ secrets.SEED_PHRASE_3 }} - SEED_PHRASE_4: ${{ secrets.SEED_PHRASE_4 }} - SEED_PHRASE_5: ${{ secrets.SEED_PHRASE_5 }} - SEED_PHRASE_6: ${{ secrets.SEED_PHRASE_6 }} - SEED_PHRASE_7: ${{ secrets.SEED_PHRASE_7 }} - SEED_PHRASE_8: ${{ secrets.SEED_PHRASE_8 }} steps: - name: Checkout code @@ -66,6 +57,7 @@ jobs: release_notes=$(cat release_notes.md | sed ':a;N;$!ba;s/\n/\\n/g' | sed 's/"/\\"/g') echo "release_notes=$release_notes" >> $GITHUB_ENV + echo "current_tag=$current_tag" >> $GITHUB_ENV - name: Publish to npm id: publish diff --git a/package-lock.json b/package-lock.json index 31b1a47..49d5e0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "zkverifyjs", - "version": "0.4.0", + "version": "0.4.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "zkverifyjs", - "version": "0.4.0", + "version": "0.4.1", "license": "GPL-3.0", "dependencies": { "@polkadot/api": "12.4.2", diff --git a/package.json b/package.json index 4babd6f..22a7849 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zkverifyjs", - "version": "0.4.0", + "version": "0.4.1", "description": "Submit proofs to zkVerify and query proof state with ease using our npm package.", "author": "Horizen Labs ", "license": "GPL-3.0", diff --git a/tsconfig.json b/tsconfig.json index e1d5d40..3a8efd2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "target": "ES2020", "module": "commonjs", "declaration": true, - "declarationMap": true, + "declarationMap": false, "strict": true, "esModuleInterop": true, "skipLibCheck": true,