@codingame/monaco-vscode-java-default-extension 1.81.8-next.3 → 1.82.1

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/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const whenReady: () => Promise<void>
2
+ export { whenReady }
@@ -4,7 +4,7 @@
4
4
  "If you want to provide a fix or improvement, please create a pull request against the original repository.",
5
5
  "Once accepted there, we are happy to receive an update request."
6
6
  ],
7
- "version": "https://github.com/redhat-developer/vscode-java/commit/7a770ab6750b4b09173d98de14eb9792e3432b36",
7
+ "version": "https://github.com/redhat-developer/vscode-java/commit/5fb57e8e1c5d776b21be13cd7227b25b87edf4a6",
8
8
  "name": "Java",
9
9
  "scopeName": "source.java",
10
10
  "patterns": [
@@ -1378,6 +1378,17 @@
1378
1378
  },
1379
1379
  "properties": {
1380
1380
  "patterns": [
1381
+ {
1382
+ "match": "(\\.)\\s*(new)",
1383
+ "captures": {
1384
+ "1": {
1385
+ "name": "punctuation.separator.period.java"
1386
+ },
1387
+ "2": {
1388
+ "name": "keyword.control.new.java"
1389
+ }
1390
+ }
1391
+ },
1381
1392
  {
1382
1393
  "match": "(\\.)\\s*([a-zA-Z_$][\\w$]*)(?=\\s*\\.\\s*[a-zA-Z_$][\\w$]*)",
1383
1394
  "captures": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-java-default-extension",
3
- "version": "1.81.8-next.3",
3
+ "version": "1.82.1",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -9,14 +9,15 @@
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/CodinGame/monaco-vscode-api"
12
+ "url": "git+https://github.com/CodinGame/monaco-vscode-api.git"
13
13
  },
14
14
  "type": "module",
15
15
  "private": false,
16
16
  "description": "Default VSCode extension designed to be used with @codingame/monaco-vscode-api",
17
17
  "main": "index.js",
18
18
  "module": "index.js",
19
+ "types": "index.d.ts",
19
20
  "dependencies": {
20
- "vscode": "npm:@codingame/monaco-vscode-api@1.81.8-next.3"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.82.1"
21
22
  }
22
23
  }