Skip to content

Commit

Permalink
fix: stop named import of deep-diff
Browse files Browse the repository at this point in the history
  • Loading branch information
yujiosaka committed May 28, 2024
1 parent b79769d commit c62f6a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import debug from "debug";
import { diff } from "deep-diff";
import deepDiff from "deep-diff";

const console = debug("sequelize-revision");

Expand All @@ -13,7 +13,7 @@ export function calcDelta(
exclude: string[],
strict: boolean,
): { [key: string]: any }[] | null {
const di = diff(current, next);
const di = deepDiff.diff(current, next);

let diffs = [];
if (di) {
Expand Down

0 comments on commit c62f6a5

Please sign in to comment.