@volar/vscode 1.6.0 → 1.6.2
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 +8 -8
- package/out/index.js +2 -5
- package/package.json +4 -4
package/out/index.d.ts
CHANGED
|
@@ -11,12 +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
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
+
};
|
|
19
22
|
}
|
|
20
|
-
export declare function createExports(exports: Exports): {
|
|
21
|
-
volar: Exports;
|
|
22
|
-
};
|
package/out/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
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
|
-
|
|
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.
|
|
3
|
+
"version": "1.6.2",
|
|
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.
|
|
17
|
-
"@volar/source-map": "1.6.
|
|
16
|
+
"@volar/language-server": "1.6.2",
|
|
17
|
+
"@volar/source-map": "1.6.2",
|
|
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": "
|
|
29
|
+
"gitHead": "1a044d2d633de5beb7e1a14689141037854ea441"
|
|
30
30
|
}
|