@codingame/monaco-vscode-fsharp-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/fsharp.tmLanguage.json +3 -3
- package/index.d.ts +2 -0
- package/package.json +4 -3
package/fsharp.tmLanguage.json
CHANGED
|
@@ -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/ionide/ionide-fsgrammar/commit/
|
|
7
|
+
"version": "https://github.com/ionide/ionide-fsgrammar/commit/8740e610a367c5e3f15be716acc7207655ced4cf",
|
|
8
8
|
"name": "fsharp",
|
|
9
9
|
"scopeName": "source.fsharp",
|
|
10
10
|
"patterns": [
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"match": "(?!when|and|or\\b)\\b([\\w0-9'`^._]+)",
|
|
317
|
-
"comments": "Here we need the \\w modifier in order to check that the words
|
|
317
|
+
"comments": "Here we need the \\w modifier in order to check that the words are allowed",
|
|
318
318
|
"captures": {
|
|
319
319
|
"1": {
|
|
320
320
|
"name": "entity.name.type.fsharp"
|
|
@@ -1832,4 +1832,4 @@
|
|
|
1832
1832
|
]
|
|
1833
1833
|
}
|
|
1834
1834
|
}
|
|
1835
|
-
}
|
|
1835
|
+
}
|
package/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-fsharp-default-extension",
|
|
3
|
-
"version": "1.
|
|
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.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.82.1"
|
|
21
22
|
}
|
|
22
23
|
}
|