diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e69dbda21e..56cccd652d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,4 +87,4 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} VERSION: ${{ inputs.version }} - DEBUG: ${{ inputs.debug && 'true' || '' }} + DEBUG: ${{ inputs.debug && '*' || '' }} diff --git a/package.json b/package.json index addfaeb52a..b3a1c5193e 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "release": "npm run nx:graph && npm run release:phase1 && npm run release:phase2 && npm run release:phase3", "nx:graph": "nx graph --file=topology.json", "release:phase1": "node --experimental-specifier-resolution=node ./scripts/releaseV2/phase1-get-new-version.mjs", - "release:phase2": "nx run-many --target=release:phase2 --all", + "release:phase2": "nx run-many --target=release:phase2 --all --parallel=false", "release:phase3": "node --experimental-specifier-resolution=node ./scripts/releaseV2/phase3-git-commit-tag-push.mjs" }, "workspaces": [ diff --git a/packages/cli/commons-dev/.npmignore b/packages/cli/commons-dev/.npmignore new file mode 100644 index 0000000000..82bc9ec83d --- /dev/null +++ b/packages/cli/commons-dev/.npmignore @@ -0,0 +1 @@ +project.json \ No newline at end of file diff --git a/packages/cli/commons/.npmignore b/packages/cli/commons/.npmignore new file mode 100644 index 0000000000..82bc9ec83d --- /dev/null +++ b/packages/cli/commons/.npmignore @@ -0,0 +1 @@ +project.json \ No newline at end of file diff --git a/packages/cli/commons/package.json b/packages/cli/commons/package.json index b6c63f33fe..ffad39af34 100644 --- a/packages/cli/commons/package.json +++ b/packages/cli/commons/package.json @@ -23,7 +23,7 @@ }, "scripts": { "build": "tsc -p tsconfig.json", - "prepublish": "npm run build", + "prepublishOnly": "npm run build", "npm:publish:template": "npm publish --access public --registry http://localhost:4873", "release:phase2": "node --experimental-specifier-resolution=node ../../../scripts/releaseV2/phase2-bump-all-packages.mjs" },