@eclipse-glsp/dev 1.1.0-RC06 → 1.1.0-next.11abc3d.138

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.
Files changed (2) hide show
  1. package/README.md +11 -5
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Eclipse GLSP - All-in-one dev package
2
2
 
3
3
  A meta package that includes all shared configuration packages Eclipse GLSP components.
4
- In addition, it also provides the GLSP CLI application
4
+ In addition, it also provides the GLSP CLI application.
5
5
 
6
6
  The package is available via npm and can be used by all GLSP components implemented with Typescript.
7
7
 
@@ -38,6 +38,10 @@ yarn add --dev @eclipse-glsp/dev
38
38
  }
39
39
  ```
40
40
 
41
+ In addition, a custom configuration for projects that use `mocha` is available:
42
+
43
+ - `@eclipse-glsp/ts-config/mocha`
44
+
41
45
  ### ESLint
42
46
 
43
47
  **Create a `.eslintrc.js`**:
@@ -64,7 +68,7 @@ module.exports = {
64
68
  }
65
69
  ```
66
70
 
67
- **Or add a `.prettierrc.json` to the workspace root**:
71
+ **Or add a `.prettierrc` to the workspace root**:
68
72
 
69
73
  ```json
70
74
  "@eclipse-glsp/prettier-config"
@@ -72,7 +76,7 @@ module.exports = {
72
76
 
73
77
  ### Mocha
74
78
 
75
- **Create a `.mocharc.json`**:
79
+ **Create a `.mocharc`**:
76
80
 
77
81
  ```json
78
82
  {
@@ -83,10 +87,12 @@ module.exports = {
83
87
 
84
88
  ### Nyc
85
89
 
86
- **Add a `.nycrc.json` to your project root**:
90
+ **Add a `.nycrc` to your project root**:
87
91
 
88
92
  ```json
89
- "@eclipse-glsp/prettier-config"
93
+ {
94
+ "extends": "@eclipse-glsp/nyc-config"
95
+ }
90
96
  ```
91
97
 
92
98
  Configuration can also be provided by `nyc.config.js` if programmed logic is required.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/dev",
3
- "version": "1.1.0-RC06",
3
+ "version": "1.1.0-next.11abc3d.138+11abc3d",
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": "^1.1.0-RC06",
28
- "@eclipse-glsp/config": "^1.1.0-RC06",
29
- "@eclipse-glsp/config-test": "^1.1.0-RC06"
27
+ "@eclipse-glsp/cli": "1.1.0-next.11abc3d.138+11abc3d",
28
+ "@eclipse-glsp/config": "1.1.0-next.11abc3d.138+11abc3d",
29
+ "@eclipse-glsp/config-test": "1.1.0-next.11abc3d.138+11abc3d"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "7a955a424094da88dd9ed43d14c78926de9a6722"
34
+ "gitHead": "11abc3dd03711d69c15ef4705257df2dee54a2db"
35
35
  }