Files
godot-interactive-changelog/package.json
Rémi Verschelde d12bf295f9 compose-fetcher: Update node-fetch to 2.7.0 and increase max retries to 10
The library update seems to replace the abrupt closing of the app with no error
with actually raising an exception which we already handled.

So now failures look like this:

    Requesting batch 10/17 of commit and pull request data.
    Failed with status 502, retrying (1/10)...
    Error fetching pull request data: FetchError: Invalid response body while trying to fetch https://api.github.com/graphql: Premature close
   Terminating with an exit code 1.
2025-01-17 00:27:54 +01:00

29 lines
803 B
JSON

{
"name": "godot-interactive-changelog",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "rollup -c",
"compose-db": "node ./compose-db.js",
"publish-db": "node ./publish-db.js"
},
"author": "Yuri Sizov <yuris@humnom.net>",
"private": true,
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"dompurify": "^2.0.7",
"lit-element": "^2.2.1",
"marked": "^0.7.0",
"node-fetch": "^2.7.0",
"posthtml": "^0.12.0",
"rollup": "^1.24.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-node-resolve": "^5.2.0"
}
}