Skip to content

Commit

Permalink
feat: added treeshake config (#1407)
Browse files Browse the repository at this point in the history
- config with options to minify and treeshake
  • Loading branch information
leszek-vechain authored Oct 10, 2024
1 parent af205a8 commit b54f853
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tsup.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { defineConfig } from 'tsup';

export default defineConfig({
treeshake: true,
minify: true
});

1 comment on commit b54f853

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Coverage

Summary

Lines Statements Branches Functions
Coverage: 99%
99.08% (4208/4247) 97.74% (1388/1420) 99.09% (876/884)
Title Tests Skipped Failures Errors Time
core 799 0 💤 0 ❌ 0 🔥 1m 45s ⏱️
network 735 0 💤 0 ❌ 0 🔥 4m 35s ⏱️
errors 42 0 💤 0 ❌ 0 🔥 16.479s ⏱️

Please sign in to comment.