@visulima/health-check 2.0.16 → 2.0.17
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 +10 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## @visulima/health-check [2.0.17](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.16...@visulima/health-check@2.0.17) (2024-10-05)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* updated dev dependencies, updated packem to v1.0.7, fixed naming of some lint config files ([c071a9c](https://github.com/visulima/visulima/commit/c071a9c8e129014a962ff654a16f302ca18a5c67))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* updated dev dependencies ([736c6ce](https://github.com/visulima/visulima/commit/736c6ce7270b3e525a8ea9f79646a2a3fde47d4e))
|
|
10
|
+
|
|
1
11
|
## @visulima/health-check [2.0.16](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.15...@visulima/health-check@2.0.16) (2024-09-24)
|
|
2
12
|
|
|
3
13
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/health-check",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
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",
|
|
@@ -79,13 +79,13 @@
|
|
|
79
79
|
"@anolilab/semantic-release-preset": "^9.0.0",
|
|
80
80
|
"@arethetypeswrong/cli": "^0.16.4",
|
|
81
81
|
"@arthurgeron/eslint-plugin-react-usememo": "^2.4.1",
|
|
82
|
-
"@babel/core": "^7.25.
|
|
82
|
+
"@babel/core": "^7.25.7",
|
|
83
83
|
"@rushstack/eslint-plugin-security": "^0.8.3",
|
|
84
84
|
"@testing-library/react": "^16.0.1",
|
|
85
85
|
"@types/node": "18.19.15",
|
|
86
|
-
"@visulima/packem": "1.0.
|
|
87
|
-
"@vitest/coverage-v8": "^2.1.
|
|
88
|
-
"@vitest/ui": "^2.1.
|
|
86
|
+
"@visulima/packem": "1.0.7",
|
|
87
|
+
"@vitest/coverage-v8": "^2.1.2",
|
|
88
|
+
"@vitest/ui": "^2.1.2",
|
|
89
89
|
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
90
90
|
"cross-env": "^7.0.3",
|
|
91
91
|
"cross-fetch": "^4.0.0",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
97
97
|
"eslint-plugin-jsx-a11y": "^6.10.0",
|
|
98
98
|
"eslint-plugin-mdx": "^3.1.5",
|
|
99
|
-
"eslint-plugin-react": "^7.
|
|
99
|
+
"eslint-plugin-react": "^7.37.1",
|
|
100
100
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
101
101
|
"eslint-plugin-ssr-friendly": "^1.3.0",
|
|
102
102
|
"eslint-plugin-testing-library": "^6.3.0",
|
|
@@ -105,14 +105,14 @@
|
|
|
105
105
|
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
106
106
|
"msw": "^2.4.9",
|
|
107
107
|
"next": "^14.2.4",
|
|
108
|
-
"node-mocks-http": "^1.16.
|
|
108
|
+
"node-mocks-http": "^1.16.1",
|
|
109
109
|
"prettier": "^3.3.3",
|
|
110
110
|
"react": "^18.3.1",
|
|
111
111
|
"react-dom": "^18.3.1",
|
|
112
112
|
"rimraf": "5.0.9",
|
|
113
113
|
"semantic-release": "24.0.0",
|
|
114
114
|
"typescript": "5.4.5",
|
|
115
|
-
"vitest": "^2.1.
|
|
115
|
+
"vitest": "^2.1.2"
|
|
116
116
|
},
|
|
117
117
|
"optionalDependencies": {
|
|
118
118
|
"next": "^14.2.4"
|
|
@@ -147,11 +147,11 @@
|
|
|
147
147
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
148
148
|
"dev": "pnpm run build --watch",
|
|
149
149
|
"lint:attw": "attw --pack",
|
|
150
|
-
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.
|
|
151
|
-
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.
|
|
150
|
+
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
151
|
+
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
152
152
|
"lint:package-json": "publint --strict",
|
|
153
|
-
"lint:prettier": "prettier --config=.prettierrc.
|
|
154
|
-
"lint:prettier:fix": "prettier --config=.prettierrc.
|
|
153
|
+
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
154
|
+
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|
|
155
155
|
"lint:types": "tsc --noEmit",
|
|
156
156
|
"test": "vitest run",
|
|
157
157
|
"test:coverage": "vitest run --coverage",
|