@eclipse-glsp/config-test 2.8.0-next.6 → 2.8.0-next.8
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/README.md +4 -4
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
Common shared configuration for testing Eclipse GLSP components that are implemented with Typescript.
|
|
4
4
|
Provides a meta package that export common configuration objects for:
|
|
5
5
|
|
|
6
|
-
-
|
|
7
|
-
-
|
|
6
|
+
- [Mocha](https://www.typescriptlang.org/) (`.mocharc`)
|
|
7
|
+
- [nyc](https://github.com/istanbuljs/nyc) (`.nycrc`)
|
|
8
8
|
|
|
9
9
|
The package is available via npm and can be used by all GLSP components implemented with Typescript.
|
|
10
10
|
Mocha and nyc are included as direct dependencies.
|
|
11
11
|
|
|
12
12
|
## Components
|
|
13
13
|
|
|
14
|
-
-
|
|
15
|
-
-
|
|
14
|
+
- [`@eclipse-glsp/mocha-config`](https://www.npmjs.com/package/@eclipse-glsp/mocha-config): Shared Mocha configuration for GLSP projects
|
|
15
|
+
- [`@eclipse-glsp/nyc-config`](https://www.npmjs.com/package/@eclipse-glsp/nyc-config): Shared nyc configuration for GLSP projects
|
|
16
16
|
|
|
17
17
|
## Install
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/config-test",
|
|
3
|
-
"version": "2.8.0-next.
|
|
3
|
+
"version": "2.8.0-next.8+99f935f",
|
|
4
4
|
"description": "Meta package that provides Mocha and nyc configurations for GLSP projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -25,22 +25,22 @@
|
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@eclipse-glsp/mocha-config": "2.8.0-next.
|
|
29
|
-
"@eclipse-glsp/nyc-config": "2.8.0-next.
|
|
28
|
+
"@eclipse-glsp/mocha-config": "2.8.0-next.8+99f935f",
|
|
29
|
+
"@eclipse-glsp/nyc-config": "2.8.0-next.8+99f935f",
|
|
30
30
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
31
|
-
"@types/chai": "^4.3.
|
|
32
|
-
"@types/mocha": "^10.0.
|
|
33
|
-
"@types/sinon": "^
|
|
34
|
-
"chai": "^4.
|
|
31
|
+
"@types/chai": "^4.3.20",
|
|
32
|
+
"@types/mocha": "^10.0.10",
|
|
33
|
+
"@types/sinon": "^21.0.1",
|
|
34
|
+
"chai": "^4.5.0",
|
|
35
35
|
"ignore-styles": "^5.0.1",
|
|
36
|
-
"mocha": "^
|
|
37
|
-
"nyc": "^
|
|
38
|
-
"reflect-metadata": "^0.
|
|
39
|
-
"sinon": "^
|
|
36
|
+
"mocha": "^11.7.6",
|
|
37
|
+
"nyc": "^18.0.0",
|
|
38
|
+
"reflect-metadata": "^0.2.2",
|
|
39
|
+
"sinon": "^22.0.0",
|
|
40
40
|
"ts-node": "^10.9.1"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "99f935f2fd63a309043b18e9668845186b2e0db9"
|
|
46
46
|
}
|