@marko/language-server 2.0.2 → 2.0.3
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/dist/index.js +12 -4
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +12 -4
- package/dist/index.mjs.map +4 -4
- package/dist/service/marko/util/get-tag-name-completion.d.ts +1 -1
- package/dist/service/marko/util/is-html.d.ts +2 -0
- package/dist/utils/file.d.ts +1 -1
- package/package.json +2 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TagDefinition } from "@marko/babel-utils";
|
|
1
|
+
import type { TagDefinition } from "@marko/compiler/babel-utils";
|
|
2
2
|
import { type CompletionItem, type Range } from "vscode-languageserver";
|
|
3
3
|
export default function getTagNameCompletion({ tag, range, showAutoComplete, importer, }: {
|
|
4
4
|
tag: TagDefinition;
|
package/dist/utils/file.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TaglibLookup } from "@marko/babel-utils";
|
|
1
|
+
import type { TaglibLookup } from "@marko/compiler/babel-utils";
|
|
2
2
|
import { type Parsed } from "@marko/language-tools";
|
|
3
3
|
import type { TextDocument } from "vscode-languageserver-textdocument";
|
|
4
4
|
export interface MarkoFile {
|
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marko/language-server",
|
|
3
3
|
"description": "Marko Language Server",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.3",
|
|
5
5
|
"bin": {
|
|
6
6
|
"marko-language-server": "./bin.js"
|
|
7
7
|
},
|
|
8
8
|
"bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@luxass/strip-json-comments": "^1.4.0",
|
|
11
|
-
"@marko/language-tools": "^2.5.
|
|
12
|
-
"@marko/babel-utils": "^6.6.3",
|
|
11
|
+
"@marko/language-tools": "^2.5.27",
|
|
13
12
|
"@marko/compiler": "^5.39.29",
|
|
14
13
|
"htmljs-parser": "^5.6.1",
|
|
15
14
|
"marko": "^5.37.41",
|