Skip to content

Commit

Permalink
feat(cli): support partial reload config entry file
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jan 24, 2022
1 parent b0b8c7a commit a8c6103
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/cli/src/addons/watcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ function deepEqual(a: any, b: any) {
if (a === b) return true
if (typeof a !== typeof b) return false
if (typeof a !== 'object') return false
if (!a || !b) return false

// check array
if (Array.isArray(a)) {
Expand Down

0 comments on commit a8c6103

Please sign in to comment.