Commit 230de70
committed
build(index): fix rollup error of mixing named and default exports
```
(!) Mixing named and default exports
Consumers of your bundle will have to use bundle['default'] to access the default export, which may not be what you want. Use `output.exports: 'named'` to disable this warning
```
This fixes the UMD bundle (in `dist`) as the library can only be
accessed via the default export.1 parent a04ef27 commit 230de70
1 file changed
+3
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
| 22 | + | |
| 23 | + | |
26 | 24 | | |
27 | | - | |
28 | | - | |
| 25 | + | |
0 commit comments