Skip to content

Commit

Permalink
fix(deps): bump is-plain-object from 4.1.1 to 5.0.0 (#198)
Browse files Browse the repository at this point in the history
Co-authored-by: Gregor Martynus <[email protected]>
  • Loading branch information
dependabot[bot] and gr2m authored Sep 10, 2020
1 parent af4ab51 commit 3b1195c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"dependencies": {
"@octokit/types": "^5.0.0",
"is-plain-object": "^4.0.0",
"is-plain-object": "^5.0.0",
"universal-user-agent": "^6.0.0"
},
"release": {
Expand Down
2 changes: 1 addition & 1 deletion src/util/merge-deep.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import isPlainObject from "is-plain-object";
import { isPlainObject } from "is-plain-object";

export function mergeDeep(defaults: any, options: any): object {
const result = Object.assign({}, defaults);
Expand Down

0 comments on commit 3b1195c

Please sign in to comment.