Skip to content

Commit a76d39a

Browse files
committed
Fix broken imports
1 parent 35cd6e1 commit a76d39a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"module": "mjs/index.js",
77
"exports": {
88
".": {
9-
"import": "./cjs/index.js",
10-
"require": "./mjs/index.js"
9+
"import": "./mjs/index.js",
10+
"require": "./cjs/index.js"
1111
}
1212
},
1313
"types": "./index.d.ts",

src/diff.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isDate, isEmptyObject, isObject, hasOwnProperty } from '../src/utils';
1+
import { isDate, isEmptyObject, isObject, hasOwnProperty } from './utils';
22

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

0 commit comments

Comments
 (0)