Skip to content

Commit

Permalink
fix(exports): add export default at the root
Browse files Browse the repository at this point in the history
  • Loading branch information
Darlei Kroth committed Feb 11, 2021
1 parent 445aba2 commit 19055c6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
export { formatter } from './lib/formatter';
export { generateGUID } from './lib/guid';
import { formatter } from './lib/formatter';
import { generateGUID } from './lib/guid';

export default {
formatter,
generateGUID,
};

0 comments on commit 19055c6

Please sign in to comment.