@eclipse-glsp/prettier-config 1.1.0-next.fe535db.107 → 2.0.0

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 (3) hide show
  1. package/README.md +2 -2
  2. package/index.json +2 -1
  3. package/package.json +13 -9
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Eclipse GLSP - Shared Pretier configuration
1
+ # Eclipse GLSP - Shared Prettier configuration
2
2
 
3
3
  Common shared configuration for Eclipse GLSP components that use Prettier for code formatting.
4
4
 
@@ -19,7 +19,7 @@ yarn add --dev @eclipse-glsp/prettier-config
19
19
  }
20
20
  ```
21
21
 
22
- **Or add a `.prettierrc.json` to the workspace root**:
22
+ **Or add a `.prettierrc` to the workspace root**:
23
23
 
24
24
  ```json
25
25
  "@eclipse-glsp/prettier-config"
package/index.json CHANGED
@@ -15,5 +15,6 @@
15
15
  "tabWidth": 2
16
16
  }
17
17
  }
18
- ]
18
+ ],
19
+ "plugins": ["prettier-plugin-packagejson"]
19
20
  }
package/package.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/prettier-config",
3
- "version": "1.1.0-next.fe535db.107+fe535db",
3
+ "version": "2.0.0",
4
4
  "description": "Shared Prettier configuration for GLSP projects",
5
- "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
6
5
  "keywords": [
7
6
  "eclipse",
8
- "tsconfig"
7
+ "glsp",
8
+ "prettier"
9
9
  ],
10
- "author": {
11
- "name": "Eclipse GLSP"
12
- },
13
10
  "homepage": "https://www.eclipse.org/glsp/",
11
+ "bugs": "https://github.com/eclipse-glsp/glsp/issues",
14
12
  "repository": {
15
13
  "type": "git",
16
14
  "url": "https://github.com/eclipse-glsp/glsp.git"
17
15
  },
18
- "bugs": "https://github.com/eclipse-glsp/glsp/issues",
16
+ "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
17
+ "author": {
18
+ "name": "Eclipse GLSP"
19
+ },
19
20
  "contributors": [
20
21
  {
21
22
  "name": "Eclipse GLSP Project",
@@ -23,9 +24,12 @@
23
24
  "url": "https://projects.eclipse.org/projects/ecd.glsp"
24
25
  }
25
26
  ],
27
+ "main": "index.json",
28
+ "dependencies": {
29
+ "prettier-plugin-packagejson": "~2.4.6"
30
+ },
26
31
  "publishConfig": {
27
32
  "access": "public"
28
33
  },
29
- "main": "index.json",
30
- "gitHead": "fe535dbf865fafa4fa024d5874d76a115d6bb069"
34
+ "gitHead": "de11704de0f39591d2a991c3956df4e0ce88d451"
31
35
  }