@codingame/monaco-vscode-fsharp-default-extension 1.81.8-next.1 → 1.82.0-next.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.
@@ -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/71b1ead8c99715f6c994115ebab7ee4a14cf0c59",
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 isn't blacklisted",
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
@@ -0,0 +1,2 @@
1
+ declare const whenReady: () => Promise<void>
2
+ export { whenReady }
package/index.js CHANGED
@@ -2,7 +2,9 @@ import { registerExtension } from 'vscode/extensions';
2
2
 
3
3
  var manifest = {name:"fsharp",displayName:"F# Language Basics",description:"Provides snippets, syntax highlighting, bracket matching and folding in F# files.",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},scripts:{"update-grammar":"node ../node_modules/vscode-grammar-updater/bin ionide/ionide-fsgrammar grammars/fsharp.json ./syntaxes/fsharp.tmLanguage.json"},contributes:{languages:[{id:"fsharp",extensions:[".fs",".fsi",".fsx",".fsscript"],aliases:["F#","FSharp","fsharp"],configuration:"./language-configuration.json"}],grammars:[{language:"fsharp",scopeName:"source.fsharp",path:"./syntaxes/fsharp.tmLanguage.json"}],snippets:[{language:"fsharp",path:"./snippets/fsharp.code-snippets"}],configurationDefaults:{"[fsharp]":{"diffEditor.ignoreTrimWhitespace":false}}},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
4
4
 
5
- const { registerFileUrl } = registerExtension(manifest);
5
+ const { registerFileUrl, whenReady } = registerExtension(manifest);
6
6
  registerFileUrl('./syntaxes/fsharp.tmLanguage.json', new URL('./fsharp.tmLanguage.json', import.meta.url).toString(), 'application/json');
7
7
  registerFileUrl('./language-configuration.json', new URL('./language-configuration.json', import.meta.url).toString(), 'application/json');
8
8
  registerFileUrl('./snippets/fsharp.code-snippets', new URL('./fsharp.code-snippets', import.meta.url).toString(), 'application/json');
9
+
10
+ export { whenReady };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-fsharp-default-extension",
3
- "version": "1.81.8-next.1",
3
+ "version": "1.82.0-next.0",
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.1"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.82.0-next.0"
21
22
  }
22
23
  }