@eclipse-glsp/config 1.0.0 → 1.1.0-RC06

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 +7 -5
  2. package/package.json +29 -21
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Eclipse GLSP - Shared configuration [![build-status](https://img.shields.io/jenkins/build?jobUrl=https://ci.eclipse.org/glsp/job/eclipse-glsp/job/glsp/job/master)](https://ci.eclipse.org/glsp/job/eclipse-glsp/job/glsp-client/job/master) [![build-status-server](https://img.shields.io/jenkins/build?jobUrl=https://ci.eclipse.org/glsp/job/deploy-npm-glsp-config/&label=publish)](https://ci.eclipse.org/glsp/job/deploy-npm-glsp-config/)
1
+ # Eclipse GLSP - Shared configuration
2
2
 
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:
@@ -7,13 +7,15 @@ Provides a meta package that export common configuration objects for:
7
7
  - [ESLint](https://eslint.org/) (`.eslintrc`)
8
8
  - [Prettier](https://prettier.io/) (`.prettierrc`).
9
9
 
10
- The package is available via npm and are used by all GLSP components implemented with Typescript. ESLint and prettier are included as direct dependencies.
10
+ The package is available via npm and is used by all GLSP components implemented with Typescript.
11
+ ESLint and prettier are included as direct dependencies.
12
+ In addition, common GLSP dev dependencies like lerna,typescript,rimraf etc. are included.
11
13
 
12
14
  ## Components
13
15
 
14
- - `@eclipse-glsp/ts-config`: Shared Typescript configuration for GLSP projects
15
- - `@eclipse-glsp/eslint-config`: Shared ESLint configuration for GLSP projects
16
- - `@eclipse-glsp/prettier-config`: Shared Prettier configuration for GLSP projects
16
+ - [`@eclipse-glsp/ts-config`](https://www.npmjs.com/package/@eclipse-glsp/ts-config): Shared Typescript configuration for GLSP projects
17
+ - [`@eclipse-glsp/eslint-config`](https://www.npmjs.com/package/@eclipse-glsp/eslint-config): Shared ESLint configuration for GLSP projects
18
+ - [`@eclipse-glsp/prettier-config`](https://www.npmjs.com/package/@eclipse-glsp/prettier-config): Shared Prettier configuration for GLSP projects
17
19
 
18
20
  ## Install
19
21
 
package/package.json CHANGED
@@ -1,21 +1,21 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/config",
3
- "version": "1.0.0",
4
- "description": "Wrapper package that provides Typescript, ESLint, Mocha and prettier configurations for GLSP projects",
5
- "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
3
+ "version": "1.1.0-RC06",
4
+ "description": "Meta package that provides Typescript, eslint and prettier configurations and common dev dependencies for GLSP projects",
6
5
  "keywords": [
7
6
  "eclipse",
8
- "tsconfig"
7
+ "config"
9
8
  ],
10
- "author": {
11
- "name": "Eclipse GLSP"
12
- },
13
9
  "homepage": "https://www.eclipse.org/glsp/",
10
+ "bugs": "https://github.com/eclipse-glsp/glsp/issues",
14
11
  "repository": {
15
12
  "type": "git",
16
13
  "url": "https://github.com/eclipse-glsp/glsp.git"
17
14
  },
18
- "bugs": "https://github.com/eclipse-glsp/glsp/issues",
15
+ "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
16
+ "author": {
17
+ "name": "Eclipse GLSP"
18
+ },
19
19
  "contributors": [
20
20
  {
21
21
  "name": "Eclipse GLSP Project",
@@ -23,20 +23,28 @@
23
23
  "url": "https://projects.eclipse.org/projects/ecd.glsp"
24
24
  }
25
25
  ],
26
- "publishConfig": {
27
- "access": "public"
28
- },
29
26
  "dependencies": {
30
- "@eclipse-glsp/eslint-config": "^1.0.0",
31
- "@eclipse-glsp/mocha-config": "^1.0.0",
32
- "@eclipse-glsp/prettier-config": "^1.0.0",
33
- "@eclipse-glsp/ts-config": "^1.0.0",
34
- "prettier": "^2.4.1"
27
+ "@eclipse-glsp/eslint-config": "^1.1.0-RC06",
28
+ "@eclipse-glsp/prettier-config": "^1.1.0-RC06",
29
+ "@eclipse-glsp/ts-config": "^1.1.0-RC06",
30
+ "@typescript-eslint/eslint-plugin": "^5.45.0",
31
+ "@typescript-eslint/parser": "^5.45.0",
32
+ "eslint": "^8.29.0",
33
+ "eslint-config-prettier": "^8.5.0",
34
+ "eslint-plugin-chai-friendly": "^0.7.2",
35
+ "eslint-plugin-deprecation": "^1.3.3",
36
+ "eslint-plugin-header": "^3.1.1",
37
+ "eslint-plugin-import": "^2.26.0",
38
+ "eslint-plugin-no-null": "^1.0.2",
39
+ "lerna": "^6.1.0",
40
+ "nx": ">=15.4.2 < 15.8.0",
41
+ "prettier": "^2.8.0",
42
+ "reflect-metadata": "^0.1.13",
43
+ "rimraf": "^3.0.2",
44
+ "typescript": "^4.9.3"
35
45
  },
36
- "devDependencies": {
37
- "@types/node": ">=12.x",
38
- "reflect-metadata": ">=0.1.13",
39
- "typescript": ">=4.5.5"
46
+ "publishConfig": {
47
+ "access": "public"
40
48
  },
41
- "gitHead": "fe535dbf865fafa4fa024d5874d76a115d6bb069"
49
+ "gitHead": "7a955a424094da88dd9ed43d14c78926de9a6722"
42
50
  }