Skip to content

Commit fca43fc

Browse files
committed
Add re-export of internal default exports
1 parent cbebe66 commit fca43fc

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Deep diffs two objects, including nested structures of arrays and objects, and return the difference.",
55
"main": "dist/index.js",
66
"files": [
7-
"dist/index.js",
7+
"dist",
88
"README.md"
99
],
1010
"scripts": {

src/index.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import diff from './diff';
2+
import addedDiff from './added';
3+
import deletedDiff from './deleted';
4+
import updatedDiff from './updated';
5+
import detailedDiff from './detailed';
6+
7+
export {
8+
addedDiff,
9+
diff,
10+
deletedDiff,
11+
updatedDiff,
12+
detailedDiff
13+
};

0 commit comments

Comments
 (0)