@visulima/health-check 2.0.9 → 2.0.11
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/CHANGELOG.md +14 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +19 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## @visulima/health-check [2.0.11](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.10...@visulima/health-check@2.0.11) (2024-01-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated all deps, updated test based on eslint errors ([909f8f3](https://github.com/visulima/visulima/commit/909f8f384804d7ef140354ab44f867532dbc9847))
|
|
7
|
+
|
|
8
|
+
## @visulima/health-check [2.0.10](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.9...@visulima/health-check@2.0.10) (2023-11-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* updated dep versions ([ed70375](https://github.com/visulima/visulima/commit/ed7037584477dbda4a8a6405a1104876e8a6c703))
|
|
14
|
+
|
|
1
15
|
## @visulima/health-check [2.0.9](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.8...@visulima/health-check@2.0.9) (2023-11-30)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.d.mts
CHANGED
|
@@ -67,4 +67,4 @@ declare class Healthcheck implements HealthCheck {
|
|
|
67
67
|
private invokeChecker;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
export { Checker, Healthcheck as HealthCheck, dnsCheck, _default$1 as healthCheckHandler, _default as healthReadyHandler, httpCheck, nodeEnvironmentCheck as nodeEnvCheck, pingCheck };
|
|
70
|
+
export { type Checker, Healthcheck as HealthCheck, dnsCheck, _default$1 as healthCheckHandler, _default as healthReadyHandler, httpCheck, nodeEnvironmentCheck as nodeEnvCheck, pingCheck };
|
package/dist/index.d.ts
CHANGED
|
@@ -67,4 +67,4 @@ declare class Healthcheck implements HealthCheck {
|
|
|
67
67
|
private invokeChecker;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
export { Checker, Healthcheck as HealthCheck, dnsCheck, _default$1 as healthCheckHandler, _default as healthReadyHandler, httpCheck, nodeEnvironmentCheck as nodeEnvCheck, pingCheck };
|
|
70
|
+
export { type Checker, Healthcheck as HealthCheck, dnsCheck, _default$1 as healthCheckHandler, _default as healthReadyHandler, httpCheck, nodeEnvironmentCheck as nodeEnvCheck, pingCheck };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/health-check",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
4
4
|
"description": "A library built to provide support for defining service health for node services. It allows you to register async health checks for your dependencies and the service itself, provides a health endpoint that exposes their status, and health metrics.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"build": "cross-env NODE_ENV=development tsup",
|
|
65
65
|
"build:prod": "cross-env NODE_ENV=production tsup",
|
|
66
66
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
67
|
-
"coverage": "vitest run --coverage",
|
|
68
67
|
"dev": "pnpm run build --watch",
|
|
69
68
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
70
69
|
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
@@ -73,6 +72,8 @@
|
|
|
73
72
|
"lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
|
|
74
73
|
"lint:types": "tsc --noEmit",
|
|
75
74
|
"test": "vitest run",
|
|
75
|
+
"test:coverage": "vitest run --coverage",
|
|
76
|
+
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
76
77
|
"test:watch": "vitest"
|
|
77
78
|
},
|
|
78
79
|
"dependencies": {
|
|
@@ -81,31 +82,32 @@
|
|
|
81
82
|
"pingman": "^2.0.0"
|
|
82
83
|
},
|
|
83
84
|
"devDependencies": {
|
|
84
|
-
"@anolilab/eslint-config": "^15.0.
|
|
85
|
-
"@anolilab/prettier-config": "^5.0.
|
|
86
|
-
"@anolilab/semantic-release-preset": "^8.0.
|
|
87
|
-
"@babel/core": "^7.23.
|
|
88
|
-
"@rushstack/eslint-plugin-security": "^0.
|
|
85
|
+
"@anolilab/eslint-config": "^15.0.3",
|
|
86
|
+
"@anolilab/prettier-config": "^5.0.14",
|
|
87
|
+
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
88
|
+
"@babel/core": "^7.23.7",
|
|
89
|
+
"@rushstack/eslint-plugin-security": "^0.8.0",
|
|
89
90
|
"@types/node": "18.18.8",
|
|
90
|
-
"@vitest/coverage-v8": "^
|
|
91
|
+
"@vitest/coverage-v8": "^1.2.1",
|
|
92
|
+
"@vitest/ui": "^1.2.1",
|
|
91
93
|
"cross-env": "^7.0.3",
|
|
92
94
|
"cross-fetch": "^4.0.0",
|
|
93
|
-
"eslint": "^8.
|
|
95
|
+
"eslint": "^8.56.0",
|
|
94
96
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
95
97
|
"eslint-plugin-etc": "^2.0.3",
|
|
96
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.
|
|
97
|
-
"eslint-plugin-mdx": "^
|
|
98
|
-
"eslint-plugin-vitest": "^0.3.
|
|
98
|
+
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
99
|
+
"eslint-plugin-mdx": "^3.1.5",
|
|
100
|
+
"eslint-plugin-vitest": "^0.3.20",
|
|
99
101
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
100
102
|
"next": "^13.5.6",
|
|
101
|
-
"node-mocks-http": "^1.
|
|
102
|
-
"prettier": "^3.
|
|
103
|
+
"node-mocks-http": "^1.14.1",
|
|
104
|
+
"prettier": "^3.2.4",
|
|
103
105
|
"rimraf": "^5.0.5",
|
|
104
|
-
"semantic-release": "^
|
|
106
|
+
"semantic-release": "^23.0.0",
|
|
105
107
|
"sort-package-json": "^2.6.0",
|
|
106
108
|
"tsup": "^8.0.1",
|
|
107
|
-
"typescript": "^5.3.
|
|
108
|
-
"vitest": "^
|
|
109
|
+
"typescript": "^5.3.3",
|
|
110
|
+
"vitest": "^1.2.1"
|
|
109
111
|
},
|
|
110
112
|
"optionalDependencies": {
|
|
111
113
|
"next": "^13.5.6"
|