Skip to content

Commit

Permalink
Bundle types for @testing-library/dom so people don't have to install…
Browse files Browse the repository at this point in the history
… @testing-library/dom (#53)
  • Loading branch information
calebeby committed Apr 23, 2021
1 parent d21b235 commit ae4a89a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/many-pears-repeat.md
@@ -0,0 +1,5 @@
---
'test-mule': patch
---

Bundle types for `@testing-library/dom` so people don't have to install `@testing-library/dom` (closes #50)
3 changes: 2 additions & 1 deletion rollup.config.js
Expand Up @@ -36,7 +36,8 @@ const mainConfig = {
const typesConfig = {
input: 'src/index.ts',
output: [{ file: 'dist/index.d.ts', format: 'es' }],
plugins: [dts()],
external: ['puppeteer', 'vite', 'pretty-format'],
plugins: [dts({ respectExternal: true })],
};

export default [
Expand Down

0 comments on commit ae4a89a

Please sign in to comment.