@theia/plugin-ext-vscode 1.67.0-next.56 → 1.67.0-next.59
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/lib/browser/plugin-vscode-commands-contribution.d.ts +89 -0
- package/lib/browser/plugin-vscode-commands-contribution.d.ts.map +1 -0
- package/lib/browser/plugin-vscode-commands-contribution.js +895 -0
- package/lib/browser/plugin-vscode-commands-contribution.js.map +1 -0
- package/lib/browser/plugin-vscode-contribution.d.ts +6 -0
- package/lib/browser/plugin-vscode-contribution.d.ts.map +1 -0
- package/lib/browser/plugin-vscode-contribution.js +49 -0
- package/lib/browser/plugin-vscode-contribution.js.map +1 -0
- package/lib/browser/plugin-vscode-frontend-module.d.ts +4 -0
- package/lib/browser/plugin-vscode-frontend-module.d.ts.map +1 -0
- package/lib/browser/plugin-vscode-frontend-module.js +31 -0
- package/lib/browser/plugin-vscode-frontend-module.js.map +1 -0
- package/lib/common/plugin-vscode-environment.d.ts +12 -0
- package/lib/common/plugin-vscode-environment.d.ts.map +1 -0
- package/lib/common/plugin-vscode-environment.js +57 -0
- package/lib/common/plugin-vscode-environment.js.map +1 -0
- package/lib/common/plugin-vscode-types.d.ts +3 -0
- package/lib/common/plugin-vscode-types.d.ts.map +1 -0
- package/lib/common/plugin-vscode-types.js +22 -0
- package/lib/common/plugin-vscode-types.js.map +1 -0
- package/lib/common/plugin-vscode-uri.d.ts +15 -0
- package/lib/common/plugin-vscode-uri.d.ts.map +1 -0
- package/lib/common/plugin-vscode-uri.js +49 -0
- package/lib/common/plugin-vscode-uri.js.map +1 -0
- package/lib/node/context/plugin-vscode-init-fe.d.ts +3 -0
- package/lib/node/context/plugin-vscode-init-fe.d.ts.map +1 -0
- package/lib/node/context/plugin-vscode-init-fe.js +38 -0
- package/lib/node/context/plugin-vscode-init-fe.js.map +1 -0
- package/lib/node/local-vsix-file-plugin-deployer-resolver.d.ts +12 -0
- package/lib/node/local-vsix-file-plugin-deployer-resolver.d.ts.map +1 -0
- package/lib/node/local-vsix-file-plugin-deployer-resolver.js +54 -0
- package/lib/node/local-vsix-file-plugin-deployer-resolver.js.map +1 -0
- package/lib/node/package.spec.d.ts +1 -0
- package/lib/node/package.spec.d.ts.map +1 -0
- package/lib/node/package.spec.js +26 -0
- package/lib/node/package.spec.js.map +1 -0
- package/lib/node/plugin-vscode-backend-module.d.ts +4 -0
- package/lib/node/plugin-vscode-backend-module.d.ts.map +1 -0
- package/lib/node/plugin-vscode-backend-module.js +41 -0
- package/lib/node/plugin-vscode-backend-module.js.map +1 -0
- package/lib/node/plugin-vscode-cli-contribution.d.ts +22 -0
- package/lib/node/plugin-vscode-cli-contribution.d.ts.map +1 -0
- package/lib/node/plugin-vscode-cli-contribution.js +63 -0
- package/lib/node/plugin-vscode-cli-contribution.js.map +1 -0
- package/lib/node/plugin-vscode-deployer-participant.d.ts +7 -0
- package/lib/node/plugin-vscode-deployer-participant.d.ts.map +1 -0
- package/lib/node/plugin-vscode-deployer-participant.js +51 -0
- package/lib/node/plugin-vscode-deployer-participant.js.map +1 -0
- package/lib/node/plugin-vscode-directory-handler.d.ts +21 -0
- package/lib/node/plugin-vscode-directory-handler.d.ts.map +1 -0
- package/lib/node/plugin-vscode-directory-handler.js +112 -0
- package/lib/node/plugin-vscode-directory-handler.js.map +1 -0
- package/lib/node/plugin-vscode-file-handler.d.ts +10 -0
- package/lib/node/plugin-vscode-file-handler.d.ts.map +1 -0
- package/lib/node/plugin-vscode-file-handler.js +67 -0
- package/lib/node/plugin-vscode-file-handler.js.map +1 -0
- package/lib/node/plugin-vscode-init.d.ts +3 -0
- package/lib/node/plugin-vscode-init.d.ts.map +1 -0
- package/lib/node/plugin-vscode-init.js +69 -0
- package/lib/node/plugin-vscode-init.js.map +1 -0
- package/lib/node/plugin-vscode-utils.d.ts +8 -0
- package/lib/node/plugin-vscode-utils.d.ts.map +1 -0
- package/lib/node/plugin-vscode-utils.js +105 -0
- package/lib/node/plugin-vscode-utils.js.map +1 -0
- package/lib/node/scanner-vscode.d.ts +13 -0
- package/lib/node/scanner-vscode.d.ts.map +1 -0
- package/lib/node/scanner-vscode.js +112 -0
- package/lib/node/scanner-vscode.js.map +1 -0
- package/package.json +16 -16
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PluginScanner, PluginEngine, PluginPackage, PluginModel, PluginLifecycle } from '@theia/plugin-ext';
|
|
2
|
+
import { TheiaPluginScanner } from '@theia/plugin-ext/lib/hosted/node/scanners/scanner-theia';
|
|
3
|
+
export declare class VsCodePluginScanner extends TheiaPluginScanner implements PluginScanner {
|
|
4
|
+
private readonly VSCODE_TYPE;
|
|
5
|
+
get apiType(): PluginEngine;
|
|
6
|
+
getModel(plugin: PluginPackage): PluginModel;
|
|
7
|
+
/**
|
|
8
|
+
* Maps extension dependencies to deployable extension dependencies.
|
|
9
|
+
*/
|
|
10
|
+
getDependencies(plugin: PluginPackage): Map<string, string> | undefined;
|
|
11
|
+
getLifecycle(plugin: PluginPackage): PluginLifecycle;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=scanner-vscode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scanner-vscode.d.ts","sourceRoot":"","sources":["../../src/node/scanner-vscode.ts"],"names":[],"mappings":"AAkBA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,aAAa,EAAE,WAAW,EAAE,eAAe,EAAwE,MAAM,mBAAmB,CAAC;AACnL,OAAO,EAAE,kBAAkB,EAAE,MAAM,0DAA0D,CAAC;AAM9F,qBACa,mBAAoB,SAAQ,kBAAmB,YAAW,aAAa;IAEhF,OAAO,CAAC,QAAQ,CAAC,WAAW,CAA0B;IAEtD,IAAa,OAAO,IAAI,YAAY,CAEnC;IAEQ,QAAQ,CAAC,MAAM,EAAE,aAAa,GAAG,WAAW;IA+CrD;;OAEG;IACM,eAAe,CAAC,MAAM,EAAE,aAAa,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS;IAiBvE,YAAY,CAAC,MAAM,EAAE,aAAa,GAAG,eAAe;CAWhE"}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2015-2021 Red Hat, Inc.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.VsCodePluginScanner = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
20
|
+
const path = require("path");
|
|
21
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
22
|
+
const plugin_ext_1 = require("@theia/plugin-ext");
|
|
23
|
+
const scanner_theia_1 = require("@theia/plugin-ext/lib/hosted/node/scanners/scanner-theia");
|
|
24
|
+
const environment_1 = require("@theia/core/shared/@theia/application-package/lib/environment");
|
|
25
|
+
const plugin_vscode_uri_1 = require("../common/plugin-vscode-uri");
|
|
26
|
+
const uiKind = environment_1.environment.electron.is() ? plugin_ext_1.UIKind.Desktop : plugin_ext_1.UIKind.Web;
|
|
27
|
+
let VsCodePluginScanner = class VsCodePluginScanner extends scanner_theia_1.TheiaPluginScanner {
|
|
28
|
+
constructor() {
|
|
29
|
+
super(...arguments);
|
|
30
|
+
this.VSCODE_TYPE = 'vscode';
|
|
31
|
+
}
|
|
32
|
+
get apiType() {
|
|
33
|
+
return this.VSCODE_TYPE;
|
|
34
|
+
}
|
|
35
|
+
getModel(plugin) {
|
|
36
|
+
var _a, _b, _c, _d;
|
|
37
|
+
// publisher can be empty on vscode extension development
|
|
38
|
+
const publisher = (_a = plugin.publisher) !== null && _a !== void 0 ? _a : plugin_ext_1.PluginIdentifiers.UNPUBLISHED;
|
|
39
|
+
// Only one entrypoint is valid in vscode extensions
|
|
40
|
+
// Mimic choosing frontend (web extension) and backend (local/remote extension) as described here:
|
|
41
|
+
// https://code.visualstudio.com/api/advanced-topics/extension-host#preferred-extension-location
|
|
42
|
+
const entryPoint = {};
|
|
43
|
+
// Act like codespaces when run in the browser (UIKind === 'web' and extensionKind is ['ui'])
|
|
44
|
+
const preferFrontend = uiKind === plugin_ext_1.UIKind.Web && (((_b = plugin.extensionKind) === null || _b === void 0 ? void 0 : _b.length) === 1 && plugin.extensionKind[0] === 'ui');
|
|
45
|
+
if (plugin.browser && (!plugin.main || preferFrontend)) {
|
|
46
|
+
// Use frontend if available and there is no backend or frontend is preferred
|
|
47
|
+
entryPoint.frontend = plugin.browser;
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
// Default to using backend
|
|
51
|
+
entryPoint.backend = plugin.main;
|
|
52
|
+
}
|
|
53
|
+
if ((_c = plugin.theiaPlugin) === null || _c === void 0 ? void 0 : _c.headless) {
|
|
54
|
+
// Support the Theia-specific extension for headless plugins
|
|
55
|
+
entryPoint.headless = (_d = plugin.theiaPlugin) === null || _d === void 0 ? void 0 : _d.headless;
|
|
56
|
+
}
|
|
57
|
+
const result = {
|
|
58
|
+
packagePath: plugin.packagePath,
|
|
59
|
+
packageUri: this.pluginUriFactory.createUri(plugin).toString(),
|
|
60
|
+
// see id definition: https://github.com/microsoft/vscode/blob/15916055fe0cb9411a5f36119b3b012458fe0a1d/src/vs/platform/extensions/common/extensions.ts#L167-L169
|
|
61
|
+
id: `${publisher.toLowerCase()}.${plugin.name.toLowerCase()}`,
|
|
62
|
+
name: plugin.name,
|
|
63
|
+
publisher: publisher,
|
|
64
|
+
version: plugin.version,
|
|
65
|
+
displayName: plugin.displayName,
|
|
66
|
+
description: plugin.description,
|
|
67
|
+
engine: {
|
|
68
|
+
type: this.VSCODE_TYPE,
|
|
69
|
+
version: plugin.engines[this.VSCODE_TYPE]
|
|
70
|
+
},
|
|
71
|
+
entryPoint,
|
|
72
|
+
iconUrl: plugin.icon && plugin_ext_1.PluginPackage.toPluginUrl(plugin, plugin.icon),
|
|
73
|
+
l10n: plugin.l10n,
|
|
74
|
+
readmeUrl: this.getReadmeUrl(plugin),
|
|
75
|
+
licenseUrl: this.getLicenseUrl(plugin)
|
|
76
|
+
};
|
|
77
|
+
return result;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Maps extension dependencies to deployable extension dependencies.
|
|
81
|
+
*/
|
|
82
|
+
getDependencies(plugin) {
|
|
83
|
+
// Store the list of dependencies.
|
|
84
|
+
const dependencies = new Map();
|
|
85
|
+
// Iterate through the list of dependencies from `extensionDependencies` and `extensionPack`.
|
|
86
|
+
for (const dependency of [plugin.extensionDependencies, plugin.extensionPack]) {
|
|
87
|
+
if (dependency !== undefined) {
|
|
88
|
+
// Iterate over the list of dependencies present, and add them to the collection.
|
|
89
|
+
dependency.forEach((dep) => {
|
|
90
|
+
const dependencyId = dep.toLowerCase();
|
|
91
|
+
dependencies.set(dependencyId, plugin_vscode_uri_1.VSCodeExtensionUri.fromId(dependencyId).toString());
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
// Return the map of dependencies if present, else `undefined`.
|
|
96
|
+
return dependencies.size > 0 ? dependencies : undefined;
|
|
97
|
+
}
|
|
98
|
+
getLifecycle(plugin) {
|
|
99
|
+
return {
|
|
100
|
+
startMethod: 'activate',
|
|
101
|
+
stopMethod: 'deactivate',
|
|
102
|
+
frontendModuleName: (0, plugin_ext_1.buildFrontendModuleName)(plugin),
|
|
103
|
+
frontendInitPath: 'plugin-vscode-init-fe.js',
|
|
104
|
+
backendInitPath: path.join(__dirname, 'plugin-vscode-init'),
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
exports.VsCodePluginScanner = VsCodePluginScanner;
|
|
109
|
+
exports.VsCodePluginScanner = VsCodePluginScanner = tslib_1.__decorate([
|
|
110
|
+
(0, inversify_1.injectable)()
|
|
111
|
+
], VsCodePluginScanner);
|
|
112
|
+
//# sourceMappingURL=scanner-vscode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scanner-vscode.js","sourceRoot":"","sources":["../../src/node/scanner-vscode.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin-ext-vscode",
|
|
3
|
-
"version": "1.67.0-next.
|
|
3
|
+
"version": "1.67.0-next.59+3f14297ea",
|
|
4
4
|
"description": "Theia - Plugin Extension for VsCode",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/callhierarchy": "1.67.0-next.
|
|
7
|
-
"@theia/core": "1.67.0-next.
|
|
8
|
-
"@theia/editor": "1.67.0-next.
|
|
9
|
-
"@theia/filesystem": "1.67.0-next.
|
|
10
|
-
"@theia/monaco": "1.67.0-next.
|
|
6
|
+
"@theia/callhierarchy": "1.67.0-next.59+3f14297ea",
|
|
7
|
+
"@theia/core": "1.67.0-next.59+3f14297ea",
|
|
8
|
+
"@theia/editor": "1.67.0-next.59+3f14297ea",
|
|
9
|
+
"@theia/filesystem": "1.67.0-next.59+3f14297ea",
|
|
10
|
+
"@theia/monaco": "1.67.0-next.59+3f14297ea",
|
|
11
11
|
"@theia/monaco-editor-core": "1.96.302",
|
|
12
|
-
"@theia/navigator": "1.67.0-next.
|
|
13
|
-
"@theia/outline-view": "1.67.0-next.
|
|
14
|
-
"@theia/plugin": "1.67.0-next.
|
|
15
|
-
"@theia/plugin-ext": "1.67.0-next.
|
|
16
|
-
"@theia/scm": "1.67.0-next.
|
|
17
|
-
"@theia/terminal": "1.67.0-next.
|
|
18
|
-
"@theia/typehierarchy": "1.67.0-next.
|
|
19
|
-
"@theia/userstorage": "1.67.0-next.
|
|
20
|
-
"@theia/workspace": "1.67.0-next.
|
|
12
|
+
"@theia/navigator": "1.67.0-next.59+3f14297ea",
|
|
13
|
+
"@theia/outline-view": "1.67.0-next.59+3f14297ea",
|
|
14
|
+
"@theia/plugin": "1.67.0-next.59+3f14297ea",
|
|
15
|
+
"@theia/plugin-ext": "1.67.0-next.59+3f14297ea",
|
|
16
|
+
"@theia/scm": "1.67.0-next.59+3f14297ea",
|
|
17
|
+
"@theia/terminal": "1.67.0-next.59+3f14297ea",
|
|
18
|
+
"@theia/typehierarchy": "1.67.0-next.59+3f14297ea",
|
|
19
|
+
"@theia/userstorage": "1.67.0-next.59+3f14297ea",
|
|
20
|
+
"@theia/workspace": "1.67.0-next.59+3f14297ea",
|
|
21
21
|
"decompress": "^4.2.1",
|
|
22
22
|
"filenamify": "^4.1.0",
|
|
23
23
|
"tslib": "^2.6.2"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"nyc": {
|
|
62
62
|
"extends": "../../configs/nyc.json"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "3f14297ea2edcdb1fffd74afee0613e70b43e125"
|
|
65
65
|
}
|