chore(vscode): update to 1.54.2
This commit is contained in:
@ -6,11 +6,11 @@
|
||||
"git": {
|
||||
"name": "atom/language-java",
|
||||
"repositoryUrl": "https://github.com/atom/language-java",
|
||||
"commitHash": "2bd3e55a72b08e171f811a2445343e2df9d89b71"
|
||||
"commitHash": "29f977dc42a7e2568b39bb6fb34c4ef108eb59b3"
|
||||
}
|
||||
},
|
||||
"license": "MIT",
|
||||
"version": "0.32.0"
|
||||
"version": "0.32.1"
|
||||
}
|
||||
],
|
||||
"version": 1
|
||||
|
@ -1,29 +1,47 @@
|
||||
{
|
||||
"name": "java",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "1.0.0",
|
||||
"publisher": "vscode",
|
||||
"license": "MIT",
|
||||
"engines": { "vscode": "*" },
|
||||
"scripts": {
|
||||
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-java grammars/java.cson ./syntaxes/java.tmLanguage.json"
|
||||
},
|
||||
"contributes": {
|
||||
"languages": [{
|
||||
"id": "java",
|
||||
"extensions": [ ".java", ".jav" ],
|
||||
"aliases": [ "Java", "java" ],
|
||||
"configuration": "./language-configuration.json"
|
||||
}],
|
||||
"grammars": [{
|
||||
"language": "java",
|
||||
"scopeName": "source.java",
|
||||
"path": "./syntaxes/java.tmLanguage.json"
|
||||
}],
|
||||
"snippets": [{
|
||||
"language": "java",
|
||||
"path": "./snippets/java.code-snippets"
|
||||
}]
|
||||
}
|
||||
"name": "java",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "1.0.0",
|
||||
"publisher": "vscode",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"vscode": "*"
|
||||
},
|
||||
"scripts": {
|
||||
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-java grammars/java.cson ./syntaxes/java.tmLanguage.json"
|
||||
},
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "java",
|
||||
"extensions": [
|
||||
".java",
|
||||
".jav"
|
||||
],
|
||||
"aliases": [
|
||||
"Java",
|
||||
"java"
|
||||
],
|
||||
"configuration": "./language-configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "java",
|
||||
"scopeName": "source.java",
|
||||
"path": "./syntaxes/java.tmLanguage.json"
|
||||
}
|
||||
],
|
||||
"snippets": [
|
||||
{
|
||||
"language": "java",
|
||||
"path": "./snippets/java.code-snippets"
|
||||
}
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/microsoft/vscode.git"
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"displayName": "Java Language Basics",
|
||||
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Java files."
|
||||
}
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
|
||||
"Once accepted there, we are happy to receive an update request."
|
||||
],
|
||||
"version": "https://github.com/atom/language-java/commit/2bd3e55a72b08e171f811a2445343e2df9d89b71",
|
||||
"version": "https://github.com/atom/language-java/commit/29f977dc42a7e2568b39bb6fb34c4ef108eb59b3",
|
||||
"name": "Java",
|
||||
"scopeName": "source.java",
|
||||
"patterns": [
|
||||
@ -1133,6 +1133,12 @@
|
||||
"end": "(?=})",
|
||||
"contentName": "meta.module.body.java",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "#comments"
|
||||
},
|
||||
{
|
||||
"include": "#comments-javadoc"
|
||||
},
|
||||
{
|
||||
"match": "\\b(requires|transitive|exports|opens|to|uses|provides|with)\\b",
|
||||
"name": "keyword.module.java"
|
||||
|
4
lib/vscode/extensions/java/yarn.lock
Normal file
4
lib/vscode/extensions/java/yarn.lock
Normal file
@ -0,0 +1,4 @@
|
||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
Reference in New Issue
Block a user