[html] update client dependencies + migrate

This commit is contained in:
Martin Aeschlimann 2017-01-17 21:15:59 +01:00
parent 54a383e1a2
commit 410cae8fb5
3 changed files with 26 additions and 16 deletions

View file

@ -16,7 +16,7 @@ import * as nls from 'vscode-nls';
let localize = nls.loadMessageBundle();
namespace ColorSymbolRequest {
export const type: RequestType<string, Range[], any, any> = { get method() { return 'css/colorSymbols'; }, _: null };
export const type: RequestType<string, Range[], any, any> = new RequestType('css/colorSymbols');
}
interface IPackageInfo {

View file

@ -13,24 +13,24 @@
"resolved": "https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.0.5.tgz"
},
"vscode-jsonrpc": {
"version": "3.0.1-alpha.2",
"from": "vscode-jsonrpc@>=3.0.1-alpha.2 <4.0.0",
"resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.0.1-alpha.2.tgz"
"version": "3.0.2-beta.5",
"from": "vscode-jsonrpc@>=3.0.2-beta.5 <4.0.0",
"resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.0.2-beta.5.tgz"
},
"vscode-languageclient": {
"version": "3.0.1-alpha.2",
"version": "3.0.2-beta.5",
"from": "vscode-languageclient@next",
"resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.0.1-alpha.2.tgz"
"resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.0.2-beta.5.tgz"
},
"vscode-languageserver-types": {
"version": "3.0.1-alpha.2",
"version": "3.0.2-beta.5",
"from": "vscode-languageserver-types@next",
"resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.0.1-alpha.2.tgz"
"resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.0.2-beta.5.tgz"
},
"vscode-nls": {
"version": "1.0.7",
"from": "vscode-nls@>=1.0.7 <2.0.0",
"resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-1.0.7.tgz"
"version": "2.0.1",
"from": "vscode-nls@>=2.0.1 <3.0.0",
"resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-2.0.1.tgz"
},
"winreg": {
"version": "0.0.13",

View file

@ -137,8 +137,18 @@
"html.format.wrapAttributes": {
"type": "string",
"default": "auto",
"enum": [ "auto", "force", "force-align", "force-expand-multiline" ],
"enumDescriptions": ["%html.format.wrapAttributes.auto%", "%html.format.wrapAttributes.force%", "%html.format.wrapAttributes.forcealign%", "%html.format.wrapAttributes.forcemultiline%"],
"enum": [
"auto",
"force",
"force-align",
"force-expand-multiline"
],
"enumDescriptions": [
"%html.format.wrapAttributes.auto%",
"%html.format.wrapAttributes.force%",
"%html.format.wrapAttributes.forcealign%",
"%html.format.wrapAttributes.forcemultiline%"
],
"description": "%html.format.wrapAttributes.desc%"
},
"html.suggest.angular1": {
@ -181,9 +191,9 @@
},
"dependencies": {
"vscode-extension-telemetry": "0.0.5",
"vscode-languageclient": "3.0.1-alpha.2",
"vscode-languageserver-types": "3.0.1-alpha.2",
"vscode-nls": "^1.0.7"
"vscode-languageclient": "^3.0.2-beta.5",
"vscode-languageserver-types": "^3.0.2-beta.5",
"vscode-nls": "^2.0.1"
},
"devDependencies": {
"@types/node": "^6.0.51",