Skip to content

Commit c0096b7

Browse files
authored
dev to main
dev to main
2 parents cd20430 + eddb0dc commit c0096b7

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

.coderabbit.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
2+
language: 'en-US'
3+
early_access: false
4+
reviews:
5+
auto_review:
6+
enabled: true
7+
base_branches: ['dev', 'main']
8+
sequence_diagrams: false
9+
chat:
10+
auto_reply: true

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
echo "tag=v$VERSION" >> $GITHUB_OUTPUT
4949
5050
- name: Publish packages
51-
run: pnpm run publish --access public
51+
run: pnpm publish --access public
5252
env:
5353
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5454

scripts/post-build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import path from 'node:path'
44
const token = process.env.TELEMETRY_TRACKING_TOKEN
55

66
if (!token) {
7-
throw new Error('TELEMETRY_TRACKING_TOKEN is not set.')
7+
console.error('TELEMETRY_TRACKING_TOKEN is not set.')
88
} else {
99
const filesToProcess = ['dist/constants.js']
1010
for (const file of filesToProcess) {

0 commit comments

Comments
 (0)