[Typescript] Temporarily force publish for all pushes until bugs are fixed.

This commit is contained in:
Morgan Dean
2025-07-02 13:34:54 -07:00
parent 50913687eb
commit 645171e7ab
3 changed files with 1 additions and 7 deletions

View File

@@ -32,17 +32,14 @@ jobs:
diff-search: true
- name: Install dependencies
if: steps.check-version.outputs.changed == 'true'
working-directory: ./libs/typescript/computer
run: pnpm install --frozen-lockfile
- name: Build package
if: steps.check-version.outputs.changed == 'true'
working-directory: ./libs/typescript/computer
run: pnpm run build --if-present
- name: Publish to npm
if: steps.check-version.outputs.changed == 'true'
working-directory: ./libs/typescript/computer
run: pnpm publish --access public --no-git-checks
env:

View File

@@ -32,17 +32,14 @@ jobs:
diff-search: true
- name: Install dependencies
if: steps.check-version.outputs.changed == 'true'
working-directory: ./libs/typescript/core
run: pnpm install --frozen-lockfile
- name: Build package
if: steps.check-version.outputs.changed == 'true'
working-directory: ./libs/typescript/core
run: pnpm run build --if-present
- name: Publish to npm
if: steps.check-version.outputs.changed == 'true'
working-directory: ./libs/typescript/core
run: pnpm publish --access public --no-git-checks
env:

View File

@@ -38,7 +38,7 @@
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@trycua/core": "^0.1.3",
"@trycua/core": "^0.1.2",
"pino": "^9.7.0",
"ws": "^8.18.0"
},