Skip to content

Commit

Permalink
Fix index exports
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Dec 23, 2020
1 parent a67d08f commit d875dc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default } from './lib.js'
export * from './lib.js'
export { default } from './lib/index.js'
export * from './lib/index.js'
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { todo as default } from './todo'
export { todo } from './todo'
export { todo as default } from './todo.js'
export { todo } from './todo.js'

0 comments on commit d875dc4

Please sign in to comment.