@moreapp/common-nodejs 0.9.0 → 0.9.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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/k8s/index.d.ts +4 -0
- package/dist/k8s/index.js +12 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TerminationHandler = exports.HealthServer = exports.ExpressRequestTracker = void 0;
|
|
7
|
+
const ExpressRequestTracker_1 = __importDefault(require("./ExpressRequestTracker"));
|
|
8
|
+
exports.ExpressRequestTracker = ExpressRequestTracker_1.default;
|
|
9
|
+
const HealthServer_1 = __importDefault(require("./HealthServer"));
|
|
10
|
+
exports.HealthServer = HealthServer_1.default;
|
|
11
|
+
const TerminationHandler_1 = __importDefault(require("./TerminationHandler"));
|
|
12
|
+
exports.TerminationHandler = TerminationHandler_1.default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moreapp/common-nodejs",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"format:fix": "yarn prettier --write",
|
|
14
14
|
"lint:check": "eslint . --ext ts",
|
|
15
15
|
"lint:fix": "yarn lint:check --fix",
|
|
16
|
-
"prepare": "husky
|
|
16
|
+
"prepare": "husky"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist/**/*"
|