@nattyjs/express 0.0.1-beta.13 → 0.0.1-beta.15
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/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -72,7 +72,7 @@ function requestHandler(config) {
|
|
|
72
72
|
return httpHandler.processRequest(httpContext).then((httpResponse) => {
|
|
73
73
|
return getResponse(response, httpResponse);
|
|
74
74
|
}).catch((t) => {
|
|
75
|
-
response.
|
|
75
|
+
return getResponse(response, t.httpResponse);
|
|
76
76
|
});
|
|
77
77
|
};
|
|
78
78
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -64,7 +64,7 @@ function requestHandler(config) {
|
|
|
64
64
|
return httpHandler.processRequest(httpContext).then((httpResponse) => {
|
|
65
65
|
return getResponse(response, httpResponse);
|
|
66
66
|
}).catch((t) => {
|
|
67
|
-
response.
|
|
67
|
+
return getResponse(response, t.httpResponse);
|
|
68
68
|
});
|
|
69
69
|
};
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nattyjs/express",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "ajayojha <ojhaajay@outlook.com>",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"express": "4.18.2",
|
|
19
19
|
"cors": "2.8.5",
|
|
20
20
|
"compression": "1.7.4",
|
|
21
|
-
"@nattyjs/core": "0.0.1-beta.
|
|
22
|
-
"@nattyjs/common": "0.0.1-beta.
|
|
23
|
-
"@nattyjs/types": "0.0.1-beta.
|
|
21
|
+
"@nattyjs/core": "0.0.1-beta.15",
|
|
22
|
+
"@nattyjs/common": "0.0.1-beta.15",
|
|
23
|
+
"@nattyjs/types": "0.0.1-beta.15"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "20.3.1",
|