Skip to content

Commit

Permalink
Add re-export of internal default exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips committed Jan 25, 2017
1 parent cbebe66 commit fca43fc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Deep diffs two objects, including nested structures of arrays and objects, and return the difference.",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist",
"README.md"
],
"scripts": {
Expand Down
13 changes: 13 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import diff from './diff';
import addedDiff from './added';
import deletedDiff from './deleted';
import updatedDiff from './updated';
import detailedDiff from './detailed';

export {
addedDiff,
diff,
deletedDiff,
updatedDiff,
detailedDiff
};

0 comments on commit fca43fc

Please sign in to comment.