From 5b9e589887e62064485582769ddfbe54e4fda986 Mon Sep 17 00:00:00 2001 From: jeremy lee Date: Wed, 18 Sep 2024 17:11:50 -0400 Subject: [PATCH] fix: stuff --- .github/workflows/js-publish.yml | 8 ++++---- v4-client-js/.releaserc | 2 +- v4-client-js/package.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/js-publish.yml b/.github/workflows/js-publish.yml index 4e511e0..51c08be 100644 --- a/.github/workflows/js-publish.yml +++ b/.github/workflows/js-publish.yml @@ -46,8 +46,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_WRITE }} - - name: Publish - run: ./scripts/publish-if-not-exists.sh - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_WRITE }} + # - name: Publish + # run: ./scripts/publish-if-not-exists.sh + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_WRITE }} diff --git a/v4-client-js/.releaserc b/v4-client-js/.releaserc index b6cf073..78040eb 100644 --- a/v4-client-js/.releaserc +++ b/v4-client-js/.releaserc @@ -1,6 +1,6 @@ { "branches": ["main", "test-release"], - "tagFormat": "v4-client-js@${version}-sr", + "tagFormat": "v4-client-js@${version}", "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", diff --git a/v4-client-js/package.json b/v4-client-js/package.json index 727f7df..9ca8aba 100644 --- a/v4-client-js/package.json +++ b/v4-client-js/package.json @@ -6,13 +6,13 @@ "scripts": { "build": "rm -rf build/ && npm run compile", "commitlint": "commitlint --edit", - "compile": "tsc", + "compile": "tsc --project ./tsconfig.json --showConfig", "compile:watch": "npm run compile -- --watch", "coverage": "npm run test -- --coverage", "fix": "npm run lint -- --fix", "lint": "eslint --ext .ts,.js .", "prepublishOnly": "npm run compile", - "release": "semantic-release", + "release": "semantic-release --dry-run", "start": "node build/src/index.js", "test": "NODE_ENV=test jest --testPathIgnorePatterns=__tests__/modules/client/*", "test:watch": "npm test -- --watch",