Skip to content

Commit 3db1153

Browse files
committed
⚡ Updated HTML language server
1 parent 8c37355 commit 3db1153

30 files changed

+2674
-466
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.10.0 (March 13, 2022)
2+
* Respected editorconfig and file indendation (Issues #193, #338)
3+
* Updated dependencies & html language server
4+
* Bug Fixes
5+
16
## 1.9.0 (July 31, 2021)
27
* Formatting issues #267, #242
38
* Code folding issue #243

client/package-lock.json

Lines changed: 195 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"vscode": "^1.43.0"
1717
},
1818
"dependencies": {
19-
"vscode-languageclient": "^6.1.3"
19+
"vscode-languageclient": "^7.0.0"
2020
},
2121
"devDependencies": {
22-
"@types/node": "^16.11.6",
23-
"@types/vscode": "^1.61.0"
22+
"@types/node": "^17.0.21",
23+
"@types/vscode": "^1.65.0"
2424
}
2525
}

client/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as path from "path";
22
import { ExtensionContext } from "vscode";
3-
import { LanguageClient, LanguageClientOptions, ServerOptions, TransportKind } from "vscode-languageclient";
3+
import { LanguageClient, LanguageClientOptions, ServerOptions, TransportKind } from "vscode-languageclient/node";
44

55
import * as CONSTANT from "./constants";
66

client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { commands, ConfigurationTarget, ExtensionContext, languages, window, workspace } from "vscode";
2-
import { LanguageClient } from "vscode-languageclient";
2+
import { LanguageClient } from "vscode-languageclient/node";
33

44
import { createLanguageClient } from "./client";
55
import { setConfiguration } from "./configuration";

0 commit comments

Comments
 (0)