Skip to content

Commit 88f9f1b

Browse files
committed
chore(dependencies): update dependencies
1 parent be3b48d commit 88f9f1b

File tree

34 files changed

+1263
-502
lines changed

34 files changed

+1263
-502
lines changed

package-lock.json

Lines changed: 914 additions & 256 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/whook-aws-lambda/package-lock.json

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/whook-aws-lambda/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@
4949
"webpack": "^5.11.1"
5050
},
5151
"dependencies": {
52-
"@types/aws-lambda": "^8.10.66",
52+
"@types/aws-lambda": "^8.10.72",
5353
"@types/bytes": "^3.1.0",
5454
"@whook/cli": "^7.1.5",
5555
"@whook/cors": "^7.1.5",
5656
"@whook/http-router": "^7.1.5",
5757
"@whook/http-transaction": "^7.1.3",
5858
"@whook/whook": "^7.1.5",
59-
"ajv": "^6.12.6",
59+
"ajv": "^7.1.1",
6060
"bytes": "^3.1.0",
6161
"camelcase": "^6.2.0",
6262
"common-services": "^9.0.0",
@@ -65,11 +65,11 @@
6565
"memfs": "3.2.0",
6666
"memory-fs": "0.5.0",
6767
"mkdirp": "^1.0.4",
68-
"openapi-types": "7.0.1",
69-
"qs": "^6.9.4",
68+
"openapi-types": "^7.2.3",
69+
"qs": "^6.9.6",
7070
"strict-qs": "^6.1.3",
71-
"type-fest": "^0.20.2",
72-
"uuid": "^8.3.1",
71+
"type-fest": "^0.21.2",
72+
"uuid": "^8.3.2",
7373
"yerror": "^5.0.0",
7474
"yhttperror": "^5.0.2"
7575
},

packages/whook-aws-lambda/src/wrappers/awsHTTPLambda.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async function initHandlerForAWSHTTPLambda(
144144
verbose: DEBUG_NODE_ENVS.includes(NODE_ENV),
145145
useDefaults: true,
146146
coerceTypes: true,
147-
strictKeywords: true,
147+
strict: true,
148148
});
149149
const ammendedParameters = extractOperationSecurityParameters(
150150
OPERATION_API,

packages/whook-cli/package-lock.json

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/whook-cli/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,18 @@
7676
},
7777
"homepage": "https://github.com/nfroidure/whook",
7878
"dependencies": {
79-
"@types/fs-extra": "^9.0.4",
79+
"@types/fs-extra": "^9.0.7",
8080
"@types/inquirer": "^7.3.1",
8181
"@whook/whook": "^7.1.5",
82-
"ajv": "^6.12.6",
82+
"ajv": "^7.1.1",
8383
"camelcase": "^6.2.0",
8484
"common-services": "^9.0.0",
85-
"fs-extra": "^9.0.1",
85+
"fs-extra": "^9.1.0",
8686
"inquirer": "^7.3.3",
8787
"knifecycle": "^11.1.0",
8888
"miniquery": "^1.1.2",
89-
"openapi-types": "7.0.1",
90-
"yargs-parser": "^18.1.3"
89+
"openapi-types": "^7.2.3",
90+
"yargs-parser": "^20.2.6"
9191
},
9292
"devDependencies": {
9393
"@babel/cli": "^7.12.1",
@@ -100,6 +100,7 @@
100100
"@babel/preset-typescript": "^7.12.1",
101101
"@babel/register": "^7.12.1",
102102
"@types/jest": "^26.0.15",
103+
"@types/yargs-parser": "^20.2.0",
103104
"@typescript-eslint/eslint-plugin": "^4.8.1",
104105
"@typescript-eslint/parser": "^4.8.1",
105106
"babel-eslint": "^10.1.0",

packages/whook-cli/src/libs/args.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ describe('readArgs', () => {
4848
_: {
4949
type: 'array',
5050
description: 'Rest params',
51-
maxItems: Infinity,
5251
items: {
5352
type: 'string',
5453
},

packages/whook-cli/src/libs/args.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ export function readArgs(
1111
const ajv = new Ajv({
1212
coerceTypes: true,
1313
useDefaults: true,
14-
strictDefaults: true,
15-
strictKeywords: true,
14+
strict: true,
1615
});
1716
const validator = ajv.compile(schema);
1817

packages/whook-cors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@whook/http-router": "^7.1.5",
5858
"@whook/whook": "^7.1.5",
5959
"knifecycle": "^11.1.0",
60-
"openapi-types": "7.0.1"
60+
"openapi-types": "^7.2.3"
6161
},
6262
"devDependencies": {
6363
"@babel/cli": "^7.12.1",

packages/whook-create/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@
7575
"dependencies": {
7676
"@whook/cli": "^7.1.5",
7777
"@whook/example": "^7.1.5",
78-
"axios": "^0.21.0",
78+
"axios": "^0.21.1",
7979
"common-services": "^9.0.0",
8080
"debug": "^4.3.1",
81-
"fs-extra": "^9.0.1",
81+
"fs-extra": "^9.1.0",
8282
"inquirer": "^7.3.3",
8383
"knifecycle": "^11.1.0",
84-
"ora": "^4.0.4",
84+
"ora": "^5.3.0",
8585
"yerror": "^5.0.0"
8686
},
8787
"devDependencies": {

0 commit comments

Comments
 (0)