rxjs-grpc-minimal 0.2.9 → 0.2.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/package.json +4 -4
- package/vitest.config.js +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rxjs-grpc-minimal",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"description": "grpc node callback and streams wrapped in observables",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"@eslint/js": "^9.0.0",
|
|
42
42
|
"@grpc/grpc-js": "^1.12.5",
|
|
43
43
|
"@grpc/proto-loader": "^0.8.0",
|
|
44
|
-
"@vitest/coverage-v8": "^
|
|
44
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
45
45
|
"commit-and-tag-version": "^12.6.1",
|
|
46
46
|
"eslint": "^9.0.0",
|
|
47
47
|
"eslint-plugin-n": "^17.0.0",
|
|
48
48
|
"eslint-plugin-promise": "^7.0.0",
|
|
49
|
-
"globals": "^
|
|
49
|
+
"globals": "^17.3.0",
|
|
50
50
|
"lodash": "^4.17.21",
|
|
51
|
-
"vitest": "^
|
|
51
|
+
"vitest": "^4.0.18"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">=20"
|
package/vitest.config.js
CHANGED
|
@@ -10,6 +10,10 @@ export default defineConfig({
|
|
|
10
10
|
},
|
|
11
11
|
fileParallelism: false,
|
|
12
12
|
include: ['tests/**/*.spec.js'],
|
|
13
|
+
// Enable debug mode to exercise debug callbacks for coverage
|
|
14
|
+
env: {
|
|
15
|
+
DEBUG: 'rxjs-grpc-minimal:*'
|
|
16
|
+
},
|
|
13
17
|
coverage: {
|
|
14
18
|
provider: 'v8',
|
|
15
19
|
reporter: ['text', 'html', 'lcov'],
|