5htp-core 0.2.8-2 → 0.2.8-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp-core",
|
|
3
3
|
"description": "Convenient TypeScript framework designed for Performance and Productivity.",
|
|
4
|
-
"version": "0.2.8-
|
|
4
|
+
"version": "0.2.8-3",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp-core.git",
|
|
7
7
|
"license": "MIT",
|
package/src/server/app/index.ts
CHANGED
|
@@ -94,8 +94,7 @@ export default abstract class Application extends Service<Config, Hooks, /* TODO
|
|
|
94
94
|
|
|
95
95
|
public constructor() {
|
|
96
96
|
|
|
97
|
-
|
|
98
|
-
super();
|
|
97
|
+
super({}, {});
|
|
99
98
|
|
|
100
99
|
// Gestion crash
|
|
101
100
|
process.on('unhandledRejection', (error: any, promise: any) => {
|