@marko/language-server 0.12.13 → 0.12.14

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.
@@ -1,2 +1,2 @@
1
- import type { Plugin } from "../../types";
1
+ import type { Plugin } from "../types";
2
2
  export declare const findDocumentLinks: Plugin["findDocumentLinks"];
@@ -1,2 +1,2 @@
1
- import type { Plugin } from "../../types";
1
+ import type { Plugin } from "../types";
2
2
  export declare const findDocumentSymbols: Plugin["findDocumentSymbols"];
package/package.json CHANGED
@@ -1,29 +1,29 @@
1
1
  {
2
2
  "name": "@marko/language-server",
3
3
  "description": "Marko Language Server",
4
- "version": "0.12.13",
4
+ "version": "0.12.14",
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
  "@marko/babel-utils": "^5.21.2",
11
- "@marko/compiler": "^5.21.6",
12
- "@marko/translator-default": "^5.21.2",
13
- "htmljs-parser": "^5.0.2",
11
+ "@marko/compiler": "^5.21.7",
12
+ "@marko/translator-default": "^5.21.3",
13
+ "htmljs-parser": "^5.0.3",
14
14
  "lasso-package-root": "^1.0.1",
15
- "marko": "^5.21.2",
15
+ "marko": "^5.21.3",
16
16
  "prettier": "^2.7.1",
17
- "prettier-plugin-marko": "^1.2.1",
17
+ "prettier-plugin-marko": "^1.2.2",
18
18
  "resolve-from": "^5.0.0",
19
19
  "vscode-css-languageservice": "^6.0.1",
20
- "vscode-languageserver": "^8.0.1",
20
+ "vscode-languageserver": "^8.0.2",
21
21
  "vscode-languageserver-textdocument": "^1.0.5",
22
22
  "vscode-uri": "^3.0.3"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/prettier": "^2.6.3",
26
- "tsx": "^3.7.1"
26
+ "tsx": "^3.8.0"
27
27
  },
28
28
  "exports": {
29
29
  ".": {
@@ -1,8 +0,0 @@
1
- import type { TaglibLookup } from "@marko/babel-utils";
2
- import { DocumentLink } from "vscode-languageserver";
3
- import type { TextDocument } from "vscode-languageserver-textdocument";
4
- import { type parse } from "../../../utils/parser";
5
- /**
6
- * Iterate over the Marko CST and extract all the file links in the document.
7
- */
8
- export declare function extractDocumentLinks(doc: TextDocument, parsed: ReturnType<typeof parse>, lookup: TaglibLookup): DocumentLink[];
@@ -1,8 +0,0 @@
1
- import type { TaglibLookup } from "@marko/babel-utils";
2
- import { SymbolInformation } from "vscode-languageserver";
3
- import type { TextDocument } from "vscode-languageserver-textdocument";
4
- import { type parse } from "../../../utils/parser";
5
- /**
6
- * Iterate over the Marko CST and extract all the symbols (mostly tags) in the document.
7
- */
8
- export declare function extractDocumentSymbols(doc: TextDocument, parsed: ReturnType<typeof parse>, lookup: TaglibLookup): SymbolInformation[];