Skip to content

Commit

Permalink
fix(npm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieMason committed Oct 28, 2022
1 parent 2134658 commit 6311999
Show file tree
Hide file tree
Showing 3 changed files with 620 additions and 560 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,32 @@
],
"dependencies": {
"chalk": "4.1.2",
"commander": "9.3.0",
"commander": "9.4.1",
"cosmiconfig": "7.0.1",
"expect-more": "1.2.0",
"fp-ts": "2.12.1",
"fp-ts": "2.13.1",
"fs-extra": "10.1.0",
"glob": "8.0.3",
"minimatch": "5.1.0",
"read-yaml-file": "2.1.0",
"semver": "7.3.7"
"semver": "7.3.8"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/glob": "7.2.0",
"@types/jest": "28.1.3",
"@types/node": "18.0.0",
"@types/semver": "7.3.10",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "8.18.0",
"@types/glob": "8.0.0",
"@types/jest": "29.2.0",
"@types/node": "18.11.7",
"@types/semver": "7.3.13",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "8.26.0",
"eslint-plugin-import": "2.26.0",
"expect-more-jest": "5.4.1",
"jest": "28.1.1",
"jest": "29.2.2",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"engines": {
"node": ">=10"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/get-input/get-wrappers/get-patterns/props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function props(keys: string) {
S.traverseArray((key: string) =>
S.modify(O.chain(C.lookup(key) as never)),
),
S.execute(O.fromNullable<unknown>(obj)),
S.execute<O.Option<unknown>>(O.fromNullable<unknown>(obj)),
);
};
}

0 comments on commit 6311999

Please sign in to comment.