@eclipse-glsp/config 2.8.0-next.0 → 2.8.0-next.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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +15 -16
package/README.md CHANGED
@@ -3,23 +3,23 @@
3
3
  Common shared configuration for Eclipse GLSP components that are implemented with Typescript.
4
4
  Provides a meta package that export common configuration objects for:
5
5
 
6
- - [Typescript](https://www.typescriptlang.org/) (`tsconfig.json`)
7
- - [ESLint](https://eslint.org/) (`.eslintrc`)
8
- - [Prettier](https://prettier.io/) (`.prettierrc`).
6
+ - [Typescript](https://www.typescriptlang.org/) (`tsconfig.json`)
7
+ - [ESLint](https://eslint.org/) (`.eslintrc`)
8
+ - [Prettier](https://prettier.io/) (`.prettierrc`).
9
9
 
10
10
  The package is available via npm and is used by all GLSP components implemented with Typescript.
11
11
  ESLint and prettier are included as direct dependencies.
12
12
 
13
13
  ## Components
14
14
 
15
- - [`@eclipse-glsp/ts-config`](https://www.npmjs.com/package/@eclipse-glsp/ts-config): Shared Typescript configuration for GLSP projects
16
- - [`@eclipse-glsp/eslint-config`](https://www.npmjs.com/package/@eclipse-glsp/eslint-config): Shared ESLint configuration for GLSP projects
17
- - [`@eclipse-glsp/prettier-config`](https://www.npmjs.com/package/@eclipse-glsp/prettier-config): Shared Prettier configuration for GLSP projects
15
+ - [`@eclipse-glsp/ts-config`](https://www.npmjs.com/package/@eclipse-glsp/ts-config): Shared Typescript configuration for GLSP projects
16
+ - [`@eclipse-glsp/eslint-config`](https://www.npmjs.com/package/@eclipse-glsp/eslint-config): Shared ESLint configuration for GLSP projects
17
+ - [`@eclipse-glsp/prettier-config`](https://www.npmjs.com/package/@eclipse-glsp/prettier-config): Shared Prettier configuration for GLSP projects
18
18
 
19
19
  ## Install
20
20
 
21
21
  ```bash
22
- yarn add --dev @eclipse-glsp/config
22
+ pnpm add --save-dev @eclipse-glsp/config
23
23
  ```
24
24
 
25
25
  ## Usage
@@ -40,7 +40,7 @@ yarn add --dev @eclipse-glsp/config
40
40
 
41
41
  In addition, a custom configuration for projects that use `mocha` is available:
42
42
 
43
- - `@eclipse-glsp/ts-config/mocha`
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/config",
3
- "version": "2.8.0-next.0+f26bdf4",
3
+ "version": "2.8.0-next.11",
4
4
  "description": "Meta package that provides Typescript, eslint and prettier configurations and common dev dependencies for GLSP projects",
5
5
  "keywords": [
6
6
  "eclipse",
@@ -24,26 +24,25 @@
24
24
  }
25
25
  ],
26
26
  "dependencies": {
27
- "@eclipse-glsp/eslint-config": "2.8.0-next.0+f26bdf4",
28
- "@eclipse-glsp/prettier-config": "2.8.0-next.0+f26bdf4",
29
- "@eclipse-glsp/ts-config": "2.8.0-next.0+f26bdf4",
30
- "@eslint/js": "^9.0.0",
31
- "@stylistic/eslint-plugin": "^2.0.0",
27
+ "@eslint/js": "^10.0.1",
28
+ "@stylistic/eslint-plugin": "^5.10.0",
32
29
  "@tony.ganchev/eslint-plugin-header": "^3.1.1",
33
- "eslint": "^9.0.0",
30
+ "eslint": "^10.5.0",
34
31
  "eslint-config-prettier": "^10.0.0",
35
32
  "eslint-import-resolver-typescript": "^4.0.0",
36
33
  "eslint-plugin-chai-friendly": "^1.0.0",
37
- "eslint-plugin-import-x": "^4.0.0",
34
+ "eslint-plugin-import-x": "^4.16.2",
38
35
  "eslint-plugin-no-null": "^1.0.2",
39
- "globals": "^15.0.0",
40
- "prettier": "^3.0.3",
41
- "reflect-metadata": "^0.1.13",
42
- "rimraf": "^5.0.5",
43
- "typescript-eslint": "^8.0.0"
36
+ "globals": "^17.6.0",
37
+ "prettier": "^3.8.4",
38
+ "reflect-metadata": "^0.2.2",
39
+ "rimraf": "^6.1.3",
40
+ "typescript-eslint": "^8.0.0",
41
+ "@eclipse-glsp/eslint-config": "2.8.0-next.11",
42
+ "@eclipse-glsp/ts-config": "2.8.0-next.11",
43
+ "@eclipse-glsp/prettier-config": "2.8.0-next.11"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
47
- },
48
- "gitHead": "f26bdf45a554ee6b5f7ece2f2cdf257974bb3f05"
49
- }
47
+ }
48
+ }