@codingame/monaco-vscode-javascript-default-extension 11.1.1 → 12.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.
package/index.js CHANGED
@@ -3,12 +3,12 @@ import { registerExtension } from 'vscode/extensions';
3
3
  var manifest = {name:"javascript",displayName:"%displayName%",description:"%description%",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"0.10.x"},categories:["Programming Languages"],contributes:{configurationDefaults:{"[javascript]":{"editor.maxTokenizationLineLength":2500}},languages:[{id:"javascriptreact",aliases:["JavaScript JSX","JavaScript React","jsx"],extensions:[".jsx"],configuration:"./javascript-language-configuration.json"},{id:"javascript",aliases:["JavaScript","javascript","js"],extensions:[".js",".es6",".mjs",".cjs",".pac"],filenames:["jakefile"],firstLine:"^#!.*\\bnode",mimetypes:["text/javascript"],configuration:"./javascript-language-configuration.json"},{id:"jsx-tags",aliases:[],configuration:"./tags-language-configuration.json"}],grammars:[{language:"javascriptreact",scopeName:"source.js.jsx",path:"./syntaxes/JavaScriptReact.tmLanguage.json",embeddedLanguages:{"meta.tag.js":"jsx-tags","meta.tag.without-attributes.js":"jsx-tags","meta.tag.attributes.js.jsx":"javascriptreact","meta.embedded.expression.js":"javascriptreact"},tokenTypes:{"meta.template.expression":"other","meta.template.expression string":"string","meta.template.expression comment":"comment","entity.name.type.instance.jsdoc":"other","entity.name.function.tagged-template":"other","meta.import string.quoted":"other","variable.other.jsdoc":"other"}},{language:"javascript",scopeName:"source.js",path:"./syntaxes/JavaScript.tmLanguage.json",embeddedLanguages:{"meta.tag.js":"jsx-tags","meta.tag.without-attributes.js":"jsx-tags","meta.tag.attributes.js":"javascript","meta.embedded.expression.js":"javascript"},tokenTypes:{"meta.template.expression":"other","meta.template.expression string":"string","meta.template.expression comment":"comment","entity.name.type.instance.jsdoc":"other","entity.name.function.tagged-template":"other","meta.import string.quoted":"other","variable.other.jsdoc":"other"}},{scopeName:"source.js.regexp",path:"./syntaxes/Regular Expressions (JavaScript).tmLanguage"}],semanticTokenScopes:[{language:"javascript",scopes:{property:["variable.other.property.js"],"property.readonly":["variable.other.constant.property.js"],variable:["variable.other.readwrite.js"],"variable.readonly":["variable.other.constant.object.js"],"function":["entity.name.function.js"],namespace:["entity.name.type.module.js"],"variable.defaultLibrary":["support.variable.js"],"function.defaultLibrary":["support.function.js"]}},{language:"javascriptreact",scopes:{property:["variable.other.property.jsx"],"property.readonly":["variable.other.constant.property.jsx"],variable:["variable.other.readwrite.jsx"],"variable.readonly":["variable.other.constant.object.jsx"],"function":["entity.name.function.jsx"],namespace:["entity.name.type.module.jsx"],"variable.defaultLibrary":["support.variable.js"],"function.defaultLibrary":["support.function.js"]}}],snippets:[{language:"javascript",path:"./snippets/javascript.code-snippets"},{language:"javascriptreact",path:"./snippets/javascript.code-snippets"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
4
4
 
5
5
  const { registerFileUrl, whenReady } = registerExtension(manifest, undefined, {"system":true});
6
- registerFileUrl('./syntaxes/JavaScriptReact.tmLanguage.json', new URL('./resources/JavaScriptReact.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":190947});
7
- registerFileUrl('./syntaxes/JavaScript.tmLanguage.json', new URL('./resources/JavaScript.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":187951});
6
+ registerFileUrl('./javascript-language-configuration.json', new URL('./resources/javascript-language-configuration.json', import.meta.url).toString(), {"mimeType":"application/json","size":2607});
7
+ registerFileUrl('./snippets/javascript.code-snippets', new URL('./resources/javascript.code-snippets', import.meta.url).toString(), {"size":4133});
8
+ registerFileUrl('./syntaxes/JavaScript.tmLanguage.json', new URL('./resources/JavaScript.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":188346});
9
+ registerFileUrl('./syntaxes/JavaScriptReact.tmLanguage.json', new URL('./resources/JavaScriptReact.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":191354});
8
10
  registerFileUrl('./syntaxes/Regular Expressions (JavaScript).tmLanguage', new URL('./resources/Regular Expressions (JavaScript).tmLanguage', import.meta.url).toString(), {"size":5864});
9
- registerFileUrl('./javascript-language-configuration.json', new URL('./resources/javascript-language-configuration.json', import.meta.url).toString(), {"mimeType":"application/json","size":2488});
10
11
  registerFileUrl('./tags-language-configuration.json', new URL('./resources/tags-language-configuration.json', import.meta.url).toString(), {"mimeType":"application/json","size":1330});
11
- registerFileUrl('./snippets/javascript.code-snippets', new URL('./resources/javascript.code-snippets', import.meta.url).toString(), {"size":4133});
12
12
  registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":3196});
13
13
  registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), {"mimeType":"application/json","size":150});
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-javascript-default-extension",
3
- "version": "11.1.1",
3
+ "version": "12.0.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,6 +18,6 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@11.1.1"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@12.0.0"
22
22
  }
23
23
  }