diff --git a/.github/workflows/js-publish.yml b/.github/workflows/js-publish.yml index 4e511e0a..51c08be9 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 b6cf0733..78040eb3 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 727f7dfd..9ca8aba4 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",