Skip to content

Commit

Permalink
fix(build): add default export (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
manbearwiz authored Jul 22, 2024
1 parent c1e51aa commit 27a1246
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,5 @@ export class TinyReporter implements Reporter {
);
}
}

export default TinyReporter;
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export default {
coverage: {
reporter: ['cobertura', 'text', 'html', 'lcov'],
thresholds: {
statements: 93.75,
statements: 93.8,
branches: 82.75,
functions: 100,
lines: 93.75,
lines: 93.8,
autoUpdate: true,
},
exclude: ['./*.config.{js,ts,mts}', 'dist'],
Expand Down

0 comments on commit 27a1246

Please sign in to comment.