@volar/vscode 1.6.1 → 1.6.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/out/index.d.ts CHANGED
@@ -11,11 +11,12 @@ export declare function takeOverModeActive(context: vscode.ExtensionContext): bo
11
11
  import * as lsp from 'vscode-languageclient';
12
12
  export declare const middleware: lsp.Middleware;
13
13
  export declare function parseServerCommand(command: vscode.Command): vscode.Command;
14
- export interface Exports {
15
- codegenStackSupport?: boolean;
16
- languageClients: lsp.BaseLanguageClient[];
17
- serverLib: typeof import('@volar/language-server');
14
+ export declare const supportLabsVersion: "1.6.2";
15
+ export interface ExportsInfoForLabs {
16
+ volarLabs: {
17
+ version: typeof supportLabsVersion;
18
+ languageClients: lsp.BaseLanguageClient[];
19
+ languageServerProtocol: typeof import('@volar/language-server/protocol');
20
+ codegenStackSupport?: boolean;
21
+ };
18
22
  }
19
- export declare function createExports(exports: Exports): {
20
- volar: Exports;
21
- };
package/out/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createExports = exports.parseServerCommand = exports.middleware = exports.takeOverModeActive = exports.getTsdk = exports.activateTsVersionStatusItem = exports.activateServerSys = exports.activateTsConfigStatusItem = exports.activateServerStats = exports.activateReloadProjects = exports.activateFindFileReferences = exports.activateWriteVirtualFiles = exports.activateAutoInsertion = void 0;
3
+ exports.supportLabsVersion = exports.parseServerCommand = exports.middleware = exports.takeOverModeActive = exports.getTsdk = exports.activateTsVersionStatusItem = exports.activateServerSys = exports.activateTsConfigStatusItem = exports.activateServerStats = exports.activateReloadProjects = exports.activateFindFileReferences = exports.activateWriteVirtualFiles = exports.activateAutoInsertion = void 0;
4
4
  const vscode = require("vscode");
5
5
  var autoInsertion_1 = require("./features/autoInsertion");
6
6
  Object.defineProperty(exports, "activateAutoInsertion", { enumerable: true, get: function () { return autoInsertion_1.activate; } });
@@ -98,8 +98,5 @@ function parseServerCommand(command) {
98
98
  return command;
99
99
  }
100
100
  exports.parseServerCommand = parseServerCommand;
101
- function createExports(exports) {
102
- return { volar: exports };
103
- }
104
- exports.createExports = createExports;
101
+ exports.supportLabsVersion = '1.6.2';
105
102
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volar/vscode",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "main": "out/index.js",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -13,8 +13,8 @@
13
13
  "directory": "packages/vscode"
14
14
  },
15
15
  "dependencies": {
16
- "@volar/language-server": "1.6.1",
17
- "@volar/source-map": "1.6.1",
16
+ "@volar/language-server": "1.6.3",
17
+ "@volar/source-map": "1.6.3",
18
18
  "typesafe-path": "^0.2.2",
19
19
  "vscode-nls": "^5.2.0"
20
20
  },
@@ -26,5 +26,5 @@
26
26
  "@types/vscode": "*",
27
27
  "vscode-languageclient": "*"
28
28
  },
29
- "gitHead": "1e1e99f43ff39db5432a33c8013eda706e765001"
29
+ "gitHead": "79c29a4632028168280819ecd6c0d68e31c08848"
30
30
  }