Skip to content

Commit 8285c4f

Browse files
committed
Bump dependencies
- set version to 3.2.1
1 parent c58745d commit 8285c4f

File tree

4 files changed

+431
-504
lines changed

4 files changed

+431
-504
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "edc-client-js",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "edc-client-js",
55
"license": "MIT",
66
"repository": "",
@@ -19,21 +19,20 @@
1919
},
2020
"pre-push": "lint",
2121
"dependencies": {
22-
"axios": "0.21.4",
22+
"axios": "0.24.0",
2323
"es6-promise": "4.2.8",
2424
"lodash-es": "4.17.21"
2525
},
2626
"devDependencies": {
27-
"@types/es6-promise": "3.3.0",
28-
"@types/jasmine": "3.9.1",
27+
"@types/jasmine": "3.10.2",
2928
"@types/lodash-es": "4.17.5",
30-
"@types/node": "16.9.6",
31-
"@typescript-eslint/eslint-plugin": "4.31.2",
32-
"@typescript-eslint/eslint-plugin-tslint": "4.31.2",
33-
"@typescript-eslint/parser": "4.31.2",
29+
"@types/node": "16.11.11",
30+
"@typescript-eslint/eslint-plugin": "5.5.0",
31+
"@typescript-eslint/eslint-plugin-tslint": "5.5.0",
32+
"@typescript-eslint/parser": "5.5.0",
3433
"clean-webpack-plugin": "4.0.0",
35-
"eslint": "7.32.0",
36-
"karma": "6.3.4",
34+
"eslint": "8.4.0",
35+
"karma": "6.3.9",
3736
"karma-chrome-launcher": "3.1.0",
3837
"karma-cli": "2.0.0",
3938
"karma-jasmine": "4.0.1",
@@ -43,9 +42,9 @@
4342
"pre-push": "0.1.1",
4443
"ts-loader": "9.2.6",
4544
"tslint": "6.1.3",
46-
"typescript": "4.4.3",
47-
"webpack": "5.53.0",
48-
"webpack-cli": "4.8.0",
45+
"typescript": "4.5.2",
46+
"webpack": "5.64.4",
47+
"webpack-cli": "4.9.1",
4948
"webpack-merge": "5.8.0"
5049
},
5150
"engines": {

src/utils/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ export const isNil = (value: unknown): value is null | undefined => value === un
1717

1818
export const removeNils = <T>(arr: Array<T | null | undefined>): T[] => (arr ?? []).filter<T>((item: T | null | undefined): item is T => !isNil(item));
1919

20-
export const hasOwnProperty = <X extends unknown, Y extends PropertyKey>(obj: X, prop: Y): obj is X & Record<Y, unknown> =>
20+
export const hasOwnProperty = <X, Y extends PropertyKey>(obj: X, prop: Y): obj is X & Record<Y, unknown> =>
2121
Object.prototype.hasOwnProperty.call(obj, prop);

0 commit comments

Comments
 (0)