Skip to content

Commit

Permalink
Fix broken imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips committed Jan 25, 2022
1 parent 35cd6e1 commit a76d39a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"module": "mjs/index.js",
"exports": {
".": {
"import": "./cjs/index.js",
"require": "./mjs/index.js"
"import": "./mjs/index.js",
"require": "./cjs/index.js"
}
},
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/diff.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isDate, isEmptyObject, isObject, hasOwnProperty } from '../src/utils';
import { isDate, isEmptyObject, isObject, hasOwnProperty } from './utils';

const diff = (lhs, rhs) => {
if (lhs === rhs) return {}; // equal return no diff
Expand Down

0 comments on commit a76d39a

Please sign in to comment.