@grandlinex/kernel 0.17.0 → 0.17.1
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/KernelModule.js +2 -10
- package/package.json +5 -5
package/dist/KernelModule.js
CHANGED
|
@@ -89,16 +89,8 @@ var KernelModule = /** @class */ (function (_super) {
|
|
|
89
89
|
function KernelModule(kernel) {
|
|
90
90
|
var _this = _super.call(this, 'kernel', kernel) || this;
|
|
91
91
|
_this.useLightDB = false;
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
new ApiAuthTestAction_1.default(_this),
|
|
95
|
-
new GetTokenAction_1.default(_this),
|
|
96
|
-
].forEach(function (action) {
|
|
97
|
-
_this.addAction(action);
|
|
98
|
-
});
|
|
99
|
-
[new core_1.OfflineService(_this)].forEach(function (service) {
|
|
100
|
-
_this.addService(service);
|
|
101
|
-
});
|
|
92
|
+
_this.addAction(new ApiVersionAction_1.default(_this), new ApiAuthTestAction_1.default(_this), new GetTokenAction_1.default(_this));
|
|
93
|
+
_this.addService(new core_1.OfflineService(_this));
|
|
102
94
|
return _this;
|
|
103
95
|
}
|
|
104
96
|
KernelModule.prototype.initModule = function () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grandlinex/kernel",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "GrandLineX is an out-of-the-box server framework on top of ExpressJs.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"license": "BSD-3-Clause",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@grandlinex/bundle-elogger": "^0.17.
|
|
31
|
-
"@grandlinex/bundle-postgresql": "^0.17.
|
|
32
|
-
"@grandlinex/bundle-sqlight": "^0.17.
|
|
33
|
-
"@grandlinex/core": "0.17.
|
|
30
|
+
"@grandlinex/bundle-elogger": "^0.17.3",
|
|
31
|
+
"@grandlinex/bundle-postgresql": "^0.17.3",
|
|
32
|
+
"@grandlinex/bundle-sqlight": "^0.17.3",
|
|
33
|
+
"@grandlinex/core": "^0.17.4",
|
|
34
34
|
"axios": "^0.24.0",
|
|
35
35
|
"body-parser": "^1.19.1",
|
|
36
36
|
"express": "^4.17.2",
|