Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.

Commit 21ccfe7

Browse files
committed
Update dependencies
1 parent 08329d7 commit 21ccfe7

File tree

3 files changed

+306
-214
lines changed

3 files changed

+306
-214
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2690,7 +2690,7 @@ var fetchGetRequestBody = {"compiler":[8,">= 4.3.0"],"main":function(container,d
26902690
},"useData":true};
26912691

26922692
var fetchGetResponseBody = {"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {
2693-
return "async function getResponseBody(response: Response): Promise<any> {\n try {\n const contentType = response.headers.get('Content-Type');\n if (contentType) {\n const isJSON = contentType.toLowerCase().startsWith('application/json');\n if (isJSON) {\n return await response.json();\n } else {\n return await response.text();\n }\n }\n } catch (error) {\n console.error(error);\n }\n return null;\n}";
2693+
return "async function getResponseBody(response: Response): Promise<any> {\n try {\n const contentType = response.headers.get('Content-Type');\n if (contentType) {\n const isJSON = contentType.toLowerCase().startsWith('application/json');\n if (isJSON) {\n return await response.json();\n } else {\n return await response.blob();\n }\n }\n } catch (error) {\n console.error(error);\n }\n return null;\n}";
26942694
},"useData":true};
26952695

26962696
var fetchGetResponseHeader = {"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,30 +62,30 @@
6262
},
6363
"dependencies": {
6464
"camelcase": "^6.2.0",
65-
"commander": "^7.0.0",
66-
"handlebars": "^4.7.6",
67-
"js-yaml": "^4.0.0",
68-
"json-schema-ref-parser": "^9.0.7",
65+
"commander": "^7.2.0",
66+
"handlebars": "^4.7.7",
67+
"js-yaml": "^4.1.0",
68+
"json-schema-ref-parser": "^9.0.8",
6969
"mkdirp": "^1.0.4",
7070
"rimraf": "^3.0.2"
7171
},
7272
"devDependencies": {
7373
"@babel/cli": "7.14.3",
7474
"@babel/core": "7.14.3",
75-
"@babel/preset-env": "7.14.2",
75+
"@babel/preset-env": "7.14.4",
7676
"@babel/preset-typescript": "7.13.0",
7777
"@rollup/plugin-commonjs": "19.0.0",
7878
"@rollup/plugin-node-resolve": "13.0.0",
79-
"@types/express": "4.17.11",
79+
"@types/express": "4.17.12",
8080
"@types/jest": "26.0.23",
8181
"@types/js-yaml": "4.0.1",
82-
"@types/node": "15.6.0",
82+
"@types/node": "15.12.1",
8383
"@types/node-fetch": "2.5.10",
8484
"@types/qs": "6.9.6",
85-
"@typescript-eslint/eslint-plugin": "4.24.0",
86-
"@typescript-eslint/parser": "4.24.0",
85+
"@typescript-eslint/eslint-plugin": "4.26.1",
86+
"@typescript-eslint/parser": "4.26.1",
8787
"codecov": "3.8.2",
88-
"eslint": "7.27.0",
88+
"eslint": "7.28.0",
8989
"eslint-config-prettier": "8.3.0",
9090
"eslint-plugin-prettier": "3.4.0",
9191
"eslint-plugin-simple-import-sort": "7.0.0",
@@ -95,12 +95,12 @@
9595
"jest": "26.6.3",
9696
"jest-cli": "26.6.3",
9797
"node-fetch": "2.6.1",
98-
"prettier": "2.3.0",
99-
"puppeteer": "9.1.1",
98+
"prettier": "2.3.1",
99+
"puppeteer": "10.0.0",
100100
"qs": "6.10.1",
101-
"rollup": "2.49.0",
101+
"rollup": "2.51.0",
102102
"rollup-plugin-terser": "7.0.2",
103103
"rollup-plugin-typescript2": "0.30.0",
104-
"typescript": "4.2.4"
104+
"typescript": "4.3.2"
105105
}
106106
}

0 commit comments

Comments
 (0)