@eclipse-glsp/dev 2.8.0-next.7 → 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 +9 -9
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -7,14 +7,14 @@ The package is available via npm and can be used by all GLSP components implemen
|
|
|
7
7
|
|
|
8
8
|
## Components
|
|
9
9
|
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
10
|
+
- [`@eclipse-glsp/config`](https://www.npmjs.com/package/@eclipse-glsp/config): Meta package for shared build configuration
|
|
11
|
+
- [`@eclipse-glsp/ts-config`](https://www.npmjs.com/package/@eclipse-glsp/ts-config): Shared Typescript configuration for GLSP projects
|
|
12
|
+
- [`@eclipse-glsp/eslint-config`](https://www.npmjs.com/package/@eclipse-glsp/esling-config): Shared ESLint configuration for GLSP projects
|
|
13
|
+
- [`@eclipse-glsp/prettier-config`](https://www.npmjs.com/package/@eclipse-glsp/prettier-config): Shared Prettier configuration for GLSP projects
|
|
14
|
+
- [`@eclipse-glsp/config-test`](https://www.npmjs.com/package/@eclipse-glsp/config-test): Meta package for shared test configuration
|
|
15
|
+
- [`@eclipse-glsp/mocha-config`](https://www.npmjs.com/package/@eclipse-glsp/mocha-config): Shared Mocha configuration for GLSP projects
|
|
16
|
+
- [`@eclipse-glsp/nyc-config`](https://www.npmjs.com/package/@eclipse-glsp/nyc-config): Shared nyc configuration for GLSP projects
|
|
17
|
+
- [`@eclipse-glsp/cli`](https://www.npmjs.com/package/@eclipse-glsp/cli): CLI Tooling & scripts for GLSP projects
|
|
18
18
|
|
|
19
19
|
## Install
|
|
20
20
|
|
|
@@ -40,7 +40,7 @@ yarn add --dev @eclipse-glsp/dev
|
|
|
40
40
|
|
|
41
41
|
In addition, a custom configuration for projects that use `mocha` is available:
|
|
42
42
|
|
|
43
|
-
-
|
|
43
|
+
- `@eclipse-glsp/ts-config/mocha`
|
|
44
44
|
|
|
45
45
|
### ESLint
|
|
46
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/dev",
|
|
3
|
-
"version": "2.8.0-next.
|
|
3
|
+
"version": "2.8.0-next.8+99f935f",
|
|
4
4
|
"description": "All-in-one meta package that provides the GLSP development and test configuration packages, as well as the GLSP CLI package",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@eclipse-glsp/cli": "2.8.0-next.
|
|
28
|
-
"@eclipse-glsp/config": "2.8.0-next.
|
|
29
|
-
"@eclipse-glsp/config-test": "2.8.0-next.
|
|
27
|
+
"@eclipse-glsp/cli": "2.8.0-next.8+99f935f",
|
|
28
|
+
"@eclipse-glsp/config": "2.8.0-next.8+99f935f",
|
|
29
|
+
"@eclipse-glsp/config-test": "2.8.0-next.8+99f935f"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "99f935f2fd63a309043b18e9668845186b2e0db9"
|
|
35
35
|
}
|