Skip to content

Commit 93f7ed4

Browse files
committed
chore: update build command to use tsup
Updated the build step in the release workflow from `npm run build` to `npm run build:tsup`. This change optimizes the build process by leveraging the tsup bundler, which offers improved performance and output size for TypeScript projects.
1 parent 9c2e52c commit 93f7ed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: npm run test:coverage
2626

2727
- name: Build
28-
run: npm run build
28+
run: npm run build:tsup
2929

3030
- name: Generate changelog
3131
run: npx auto-changelog -p --stdout > RELEASE_NOTES.md

0 commit comments

Comments
 (0)