@theia/remote 1.47.0-next.0 → 1.47.1
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/electron-browser/remote-electron-file-dialog-service.js +4 -12
- package/lib/electron-browser/remote-electron-file-dialog-service.js.map +1 -1
- package/lib/electron-browser/remote-frontend-contribution.js +16 -24
- package/lib/electron-browser/remote-frontend-contribution.js.map +1 -1
- package/lib/electron-browser/remote-registry-contribution.js +4 -12
- package/lib/electron-browser/remote-registry-contribution.js.map +1 -1
- package/lib/electron-browser/remote-service.js +2 -7
- package/lib/electron-browser/remote-service.js.map +1 -1
- package/lib/electron-browser/remote-ssh-contribution.js +10 -18
- package/lib/electron-browser/remote-ssh-contribution.js.map +1 -1
- package/lib/electron-node/backend-remote-service-impl.js +2 -7
- package/lib/electron-node/backend-remote-service-impl.js.map +1 -1
- package/lib/electron-node/remote-connection-service.js +6 -14
- package/lib/electron-node/remote-connection-service.js.map +1 -1
- package/lib/electron-node/remote-connection-socket-provider.js +2 -7
- package/lib/electron-node/remote-connection-socket-provider.js.map +1 -1
- package/lib/electron-node/remote-proxy-server-provider.js +2 -7
- package/lib/electron-node/remote-proxy-server-provider.js.map +1 -1
- package/lib/electron-node/remote-status-service.js +4 -12
- package/lib/electron-node/remote-status-service.js.map +1 -1
- package/lib/electron-node/setup/app-native-dependency-contribution.js +2 -7
- package/lib/electron-node/setup/app-native-dependency-contribution.js.map +1 -1
- package/lib/electron-node/setup/main-copy-contribution.js +2 -7
- package/lib/electron-node/setup/main-copy-contribution.js.map +1 -1
- package/lib/electron-node/setup/remote-copy-contribution.js +4 -12
- package/lib/electron-node/setup/remote-copy-contribution.js.map +1 -1
- package/lib/electron-node/setup/remote-copy-service.js +10 -18
- package/lib/electron-node/setup/remote-copy-service.js.map +1 -1
- package/lib/electron-node/setup/remote-native-dependency-service.js +6 -14
- package/lib/electron-node/setup/remote-native-dependency-service.js.map +1 -1
- package/lib/electron-node/setup/remote-node-setup-service.js +6 -14
- package/lib/electron-node/setup/remote-node-setup-service.js.map +1 -1
- package/lib/electron-node/setup/remote-setup-script-service.js +8 -16
- package/lib/electron-node/setup/remote-setup-script-service.js.map +1 -1
- package/lib/electron-node/setup/remote-setup-service.js +12 -20
- package/lib/electron-node/setup/remote-setup-service.js.map +1 -1
- package/lib/electron-node/ssh/remote-ssh-connection-provider.js +16 -24
- package/lib/electron-node/ssh/remote-ssh-connection-provider.js.map +1 -1
- package/lib/electron-node/ssh/ssh-identity-file-collector.js +2 -7
- package/lib/electron-node/ssh/ssh-identity-file-collector.js.map +1 -1
- package/package.json +6 -6
- package/src/electron-node/ssh/remote-ssh-connection-provider.ts +2 -2
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteElectronFileDialogService = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
29
21
|
const file_dialog_service_1 = require("@theia/filesystem/lib/browser/file-dialog/file-dialog-service");
|
|
30
22
|
const electron_file_dialog_service_1 = require("@theia/filesystem/lib/electron-browser/file-dialog/electron-file-dialog-service");
|
|
@@ -47,11 +39,11 @@ let RemoteElectronFileDialogService = class RemoteElectronFileDialogService exte
|
|
|
47
39
|
}
|
|
48
40
|
}
|
|
49
41
|
};
|
|
50
|
-
__decorate([
|
|
42
|
+
(0, tslib_1.__decorate)([
|
|
51
43
|
(0, inversify_1.inject)(remote_service_1.RemoteService),
|
|
52
|
-
__metadata("design:type", remote_service_1.RemoteService)
|
|
44
|
+
(0, tslib_1.__metadata)("design:type", remote_service_1.RemoteService)
|
|
53
45
|
], RemoteElectronFileDialogService.prototype, "remoteService", void 0);
|
|
54
|
-
RemoteElectronFileDialogService = __decorate([
|
|
46
|
+
RemoteElectronFileDialogService = (0, tslib_1.__decorate)([
|
|
55
47
|
(0, inversify_1.injectable)()
|
|
56
48
|
], RemoteElectronFileDialogService);
|
|
57
49
|
exports.RemoteElectronFileDialogService = RemoteElectronFileDialogService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-electron-file-dialog-service.js","sourceRoot":"","sources":["../../src/electron-browser/remote-electron-file-dialog-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-electron-file-dialog-service.js","sourceRoot":"","sources":["../../src/electron-browser/remote-electron-file-dialog-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAGhF,4DAAkE;AAGlE,uGAAyG;AACzG,kIAA4H;AAC5H,qDAAiD;AAGjD,IAAa,+BAA+B,GAA5C,MAAa,+BAAgC,SAAQ,wDAAyB;IAMjE,cAAc,CAAC,KAA0B,EAAE,MAAiB;QACjE,IAAI,IAAI,CAAC,aAAa,CAAC,WAAW,EAAE,EAAE;YAClC,OAAO,8CAAwB,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;SACtF;aAAM;YACH,OAAO,KAAK,CAAC,cAAc,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;SAC9C;IACL,CAAC;IAEQ,cAAc,CAAC,KAA0B,EAAE,MAA6B;QAC7E,IAAI,IAAI,CAAC,aAAa,CAAC,WAAW,EAAE,EAAE;YAClC,OAAO,8CAAwB,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;SACtF;aAAM;YACH,OAAO,KAAK,CAAC,cAAc,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;SAC9C;IACL,CAAC;CACJ,CAAA;AAnB0B;IAAtB,IAAA,kBAAM,EAAC,8BAAa,CAAC;2CAAmC,8BAAa;sEAAC;AAF9D,+BAA+B;IAD3C,IAAA,sBAAU,GAAE;GACA,+BAA+B,CAqB3C;AArBY,0EAA+B"}
|
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteFrontendContribution = exports.RemoteCommands = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const core_1 = require("@theia/core");
|
|
29
21
|
const browser_1 = require("@theia/core/lib/browser");
|
|
30
22
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
@@ -128,37 +120,37 @@ let RemoteFrontendContribution = class RemoteFrontendContribution {
|
|
|
128
120
|
}
|
|
129
121
|
}
|
|
130
122
|
};
|
|
131
|
-
__decorate([
|
|
123
|
+
(0, tslib_1.__decorate)([
|
|
132
124
|
(0, inversify_1.inject)(browser_1.StatusBar),
|
|
133
|
-
__metadata("design:type", Object)
|
|
125
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
134
126
|
], RemoteFrontendContribution.prototype, "statusBar", void 0);
|
|
135
|
-
__decorate([
|
|
127
|
+
(0, tslib_1.__decorate)([
|
|
136
128
|
(0, inversify_1.inject)(core_1.QuickInputService),
|
|
137
129
|
(0, inversify_1.optional)(),
|
|
138
|
-
__metadata("design:type", Object)
|
|
130
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
139
131
|
], RemoteFrontendContribution.prototype, "quickInputService", void 0);
|
|
140
|
-
__decorate([
|
|
132
|
+
(0, tslib_1.__decorate)([
|
|
141
133
|
(0, inversify_1.inject)(core_1.CommandRegistry),
|
|
142
|
-
__metadata("design:type", core_1.CommandRegistry)
|
|
134
|
+
(0, tslib_1.__metadata)("design:type", core_1.CommandRegistry)
|
|
143
135
|
], RemoteFrontendContribution.prototype, "commandRegistry", void 0);
|
|
144
|
-
__decorate([
|
|
136
|
+
(0, tslib_1.__decorate)([
|
|
145
137
|
(0, inversify_1.inject)(remote_service_1.RemoteService),
|
|
146
|
-
__metadata("design:type", remote_service_1.RemoteService)
|
|
138
|
+
(0, tslib_1.__metadata)("design:type", remote_service_1.RemoteService)
|
|
147
139
|
], RemoteFrontendContribution.prototype, "remoteService", void 0);
|
|
148
|
-
__decorate([
|
|
140
|
+
(0, tslib_1.__decorate)([
|
|
149
141
|
(0, inversify_1.inject)(remote_status_service_1.RemoteStatusService),
|
|
150
|
-
__metadata("design:type", Object)
|
|
142
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
151
143
|
], RemoteFrontendContribution.prototype, "remoteStatusService", void 0);
|
|
152
|
-
__decorate([
|
|
144
|
+
(0, tslib_1.__decorate)([
|
|
153
145
|
(0, inversify_1.inject)(window_service_1.WindowService),
|
|
154
|
-
__metadata("design:type", Object)
|
|
146
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
155
147
|
], RemoteFrontendContribution.prototype, "windowService", void 0);
|
|
156
|
-
__decorate([
|
|
148
|
+
(0, tslib_1.__decorate)([
|
|
157
149
|
(0, inversify_1.inject)(core_1.ContributionProvider),
|
|
158
150
|
(0, inversify_1.named)(remote_registry_contribution_1.RemoteRegistryContribution),
|
|
159
|
-
__metadata("design:type", Object)
|
|
151
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
160
152
|
], RemoteFrontendContribution.prototype, "remoteRegistryContributions", void 0);
|
|
161
|
-
RemoteFrontendContribution = __decorate([
|
|
153
|
+
RemoteFrontendContribution = (0, tslib_1.__decorate)([
|
|
162
154
|
(0, inversify_1.injectable)()
|
|
163
155
|
], RemoteFrontendContribution);
|
|
164
156
|
exports.RemoteFrontendContribution = RemoteFrontendContribution;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-frontend-contribution.js","sourceRoot":"","sources":["../../src/electron-browser/remote-frontend-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-frontend-contribution.js","sourceRoot":"","sources":["../../src/electron-browser/remote-frontend-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,sCAA0I;AAC1I,qDAAyH;AACzH,4DAAmF;AACnF,oFAA6F;AAC7F,iFAA4F;AAC5F,qDAAiD;AACjD,kFAA8E;AAE9E,IAAiB,cAAc,CAQ9B;AARD,WAAiB,cAAc;IACd,4BAAa,GAAY;QAClC,EAAE,EAAE,eAAe;KACtB,CAAC;IACW,gCAAiB,GAAY,cAAO,CAAC,yBAAyB,CAAC;QACxE,EAAE,EAAE,mBAAmB;QACvB,KAAK,EAAE,yBAAyB;KACnC,CAAC,CAAC;AACP,CAAC,EARgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAQ9B;AAGD,IAAa,0BAA0B,GAAvC,MAAa,0BAA0B;IAAvC;QAuBc,mBAAc,GAAG,IAAI,6CAAc,EAAE,CAAC;IAsFpD,CAAC;IApFG,KAAK,CAAC,SAAS;QACX,MAAM,IAAI,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAC9D,IAAI,IAAI,EAAE;YACN,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;YACtE,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;SACnC;aAAM;YACH,MAAM,IAAI,CAAC,YAAY,CAAC;gBACpB,KAAK,EAAE,KAAK;aACf,CAAC,CAAC;SACN;IACL,CAAC;IAES,KAAK,CAAC,YAAY,CAAC,IAAkB;QAC3C,IAAI,CAAC,aAAa,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC5C,MAAM,KAAK,GAAmB;YAC1B,SAAS,EAAE,4BAAkB,CAAC,IAAI;YAClC,OAAO,EAAE,cAAc,CAAC,aAAa,CAAC,EAAE;YACxC,eAAe,EAAE,6CAA6C;YAC9D,KAAK,EAAE,6CAA6C;YACpD,QAAQ,EAAE,KAAK;YACf,GAAG,CAAC,IAAI,CAAC,KAAK;gBACV,CAAC,CAAC;oBACE,IAAI,EAAE,qBAAqB,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE;oBACjH,OAAO,EAAE,UAAG,CAAC,iBAAiB,CAAC,gBAAgB,EAAE,IAAI,CAAC,IAAI,CAAC;iBAC9D,CAAC,CAAC,CAAC;gBACA,IAAI,EAAE,mBAAmB;gBACzB,OAAO,EAAE,UAAG,CAAC,iBAAiB,CAAC,sBAAsB,CAAC;aACzD,CAAC;SACT,CAAC;QACF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IACrD,CAAC;IAED,gBAAgB,CAAC,QAAyB;QACtC,IAAI,CAAC,cAAc,CAAC,oBAAoB,CAAC,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,EAAE,EAAE;YAC5D,QAAQ,CAAC,eAAe,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAC;QACH,KAAK,MAAM,YAAY,IAAI,IAAI,CAAC,2BAA2B,CAAC,gBAAgB,EAAE,EAAE;YAC5E,YAAY,CAAC,sBAAsB,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;SAC5D;QACD,QAAQ,CAAC,eAAe,CAAC,cAAc,CAAC,aAAa,EAAE;YACnD,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,YAAY,EAAE;SACrC,CAAC,CAAC;QACH,QAAQ,CAAC,eAAe,CAAC,cAAc,CAAC,iBAAiB,EAAE;YACvD,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE;SACzC,CAAC,CAAC;IACP,CAAC;IAES,gBAAgB;QACtB,MAAM,IAAI,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QACnE,IAAI,IAAI,EAAE;YACN,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC;gBACtB,IAAI;aACP,CAAC,CAAC;SACN;IACL,CAAC;IAES,KAAK,CAAC,YAAY;;QACxB,MAAM,QAAQ,GAAG,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;QACnD,IAAI,IAAI,CAAC,aAAa,CAAC,WAAW,EAAE,EAAE;YAClC,QAAQ,CAAC,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC;SACnD;QACD,MAAM,UAAU,GAAqB,EAAE,CAAC;QACxC,IAAI,gBAAgB,GAAuB,SAAS,CAAC;QACrD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,IAAI,gBAAgB,KAAK,OAAO,CAAC,QAAQ,EAAE;gBACvC,UAAU,CAAC,IAAI,CAAC;oBACZ,IAAI,EAAE,WAAW;oBACjB,KAAK,EAAE,OAAO,CAAC,QAAQ;iBAC1B,CAAC,CAAC;gBACH,gBAAgB,GAAG,OAAO,CAAC,QAAQ,CAAC;aACvC;YACD,UAAU,CAAC,IAAI,CAAC;gBACZ,KAAK,EAAE,OAAO,CAAC,KAAM;gBACrB,EAAE,EAAE,OAAO,CAAC,EAAE;aACjB,CAAC,CAAC;SACN;QACD,MAAM,SAAS,GAAG,MAAM,CAAA,MAAA,IAAI,CAAC,iBAAiB,0CAAE,aAAa,CAAC,UAAU,EAAE;YACtE,WAAW,EAAE,UAAG,CAAC,iBAAiB,CAAC,0CAA0C,CAAC;SACjF,CAAC,CAAA,CAAC;QACH,IAAI,SAAS,EAAE;YACX,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,SAAS,CAAC,EAAG,CAAC,CAAC;SACtD;IACL,CAAC;CAEJ,CAAA;AA1GG;IADC,IAAA,kBAAM,EAAC,mBAAS,CAAC;;6DACsB;AAGxC;IADC,IAAA,kBAAM,EAAC,wBAAiB,CAAC;IAAE,IAAA,oBAAQ,GAAE;;qEACmB;AAGzD;IADC,IAAA,kBAAM,EAAC,sBAAe,CAAC;2CACY,sBAAe;mEAAC;AAGpD;IADC,IAAA,kBAAM,EAAC,8BAAa,CAAC;2CACY,8BAAa;iEAAC;AAGhD;IADC,IAAA,kBAAM,EAAC,2CAAmB,CAAC;;uEACgC;AAG5D;IADC,IAAA,kBAAM,EAAC,8BAAa,CAAC;;iEAC0B;AAGhD;IADC,IAAA,kBAAM,EAAC,2BAAoB,CAAC;IAAE,IAAA,iBAAK,EAAC,yDAA0B,CAAC;;+EACiC;AArBxF,0BAA0B;IADtC,IAAA,sBAAU,GAAE;GACA,0BAA0B,CA6GtC;AA7GY,gEAA0B"}
|
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteRegistry = exports.AbstractRemoteRegistryContribution = exports.RemoteRegistryContribution = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const core_1 = require("@theia/core");
|
|
29
21
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
30
22
|
const window_service_1 = require("@theia/core/lib/browser/window/window-service");
|
|
@@ -47,11 +39,11 @@ let AbstractRemoteRegistryContribution = class AbstractRemoteRegistryContributio
|
|
|
47
39
|
}
|
|
48
40
|
}
|
|
49
41
|
};
|
|
50
|
-
__decorate([
|
|
42
|
+
(0, tslib_1.__decorate)([
|
|
51
43
|
(0, inversify_1.inject)(window_service_1.WindowService),
|
|
52
|
-
__metadata("design:type", Object)
|
|
44
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
53
45
|
], AbstractRemoteRegistryContribution.prototype, "windowService", void 0);
|
|
54
|
-
AbstractRemoteRegistryContribution = __decorate([
|
|
46
|
+
AbstractRemoteRegistryContribution = (0, tslib_1.__decorate)([
|
|
55
47
|
(0, inversify_1.injectable)()
|
|
56
48
|
], AbstractRemoteRegistryContribution);
|
|
57
49
|
exports.AbstractRemoteRegistryContribution = AbstractRemoteRegistryContribution;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-registry-contribution.js","sourceRoot":"","sources":["../../src/electron-browser/remote-registry-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-registry-contribution.js","sourceRoot":"","sources":["../../src/electron-browser/remote-registry-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,sCAAsE;AACtE,4DAAkE;AAClE,kFAA8E;AAGjE,QAAA,0BAA0B,GAAG,MAAM,CAAC,4BAA4B,CAAC,CAAC;AAO/E,IAAsB,kCAAkC,GAAxD,MAAsB,kCAAkC;IAO1C,UAAU,CAAC,IAAY,EAAE,SAAkB;QACjD,MAAM,YAAY,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;QAC1D,MAAM,SAAS,GAAG,YAAY,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAC5E,MAAM,OAAO,GAAuB;YAChC,IAAI;SACP,CAAC;QACF,IAAI,SAAS,EAAE;YACX,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC;SACjC;QACD,IAAI,SAAS,EAAE;YACX,IAAI,CAAC,aAAa,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC;SACpD;aAAM;YACH,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;SACtC;IACL,CAAC;CACJ,CAAA;AAnBG;IADC,IAAA,kBAAM,EAAC,8BAAa,CAAC;;yEAC0B;AAH9B,kCAAkC;IADvD,IAAA,sBAAU,GAAE;GACS,kCAAkC,CAsBvD;AAtBqB,gFAAkC;AAwBxD,MAAa,cAAc;IAA3B;QAEc,cAAS,GAAc,EAAE,CAAC;QAC1B,gCAA2B,GAAG,IAAI,cAAO,EAAyC,CAAC;IAcjG,CAAC;IAZG,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAED,IAAI,oBAAoB;QACpB,OAAO,IAAI,CAAC,2BAA2B,CAAC,KAAK,CAAC;IAClD,CAAC;IAED,eAAe,CAAC,OAAgB,EAAE,OAAwB;QACtD,IAAI,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;QAC1D,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACjC,CAAC;CACJ;AAjBD,wCAiBC"}
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
18
|
exports.RemoteService = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
25
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
26
21
|
let RemoteService = class RemoteService {
|
|
27
22
|
isConnected() {
|
|
@@ -31,7 +26,7 @@ let RemoteService = class RemoteService {
|
|
|
31
26
|
this._connected = value;
|
|
32
27
|
}
|
|
33
28
|
};
|
|
34
|
-
RemoteService = __decorate([
|
|
29
|
+
RemoteService = (0, tslib_1.__decorate)([
|
|
35
30
|
(0, inversify_1.injectable)()
|
|
36
31
|
], RemoteService);
|
|
37
32
|
exports.RemoteService = RemoteService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-service.js","sourceRoot":"","sources":["../../src/electron-browser/remote-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-service.js","sourceRoot":"","sources":["../../src/electron-browser/remote-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAA0D;AAG1D,IAAa,aAAa,GAA1B,MAAa,aAAa;IAItB,WAAW;QACP,OAAO,IAAI,CAAC,UAAU,CAAC;IAC3B,CAAC;IAED,YAAY,CAAC,KAAc;QACvB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;IAC5B,CAAC;CACJ,CAAA;AAXY,aAAa;IADzB,IAAA,sBAAU,GAAE;GACA,aAAa,CAWzB;AAXY,sCAAa"}
|
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteSSHContribution = exports.RemoteSSHCommands = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const core_1 = require("@theia/core");
|
|
29
21
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
30
22
|
const remote_ssh_connection_provider_1 = require("../electron-common/remote-ssh-connection-provider");
|
|
@@ -95,23 +87,23 @@ let RemoteSSHContribution = class RemoteSSHContribution extends remote_registry_
|
|
|
95
87
|
});
|
|
96
88
|
}
|
|
97
89
|
};
|
|
98
|
-
__decorate([
|
|
90
|
+
(0, tslib_1.__decorate)([
|
|
99
91
|
(0, inversify_1.inject)(core_1.QuickInputService),
|
|
100
|
-
__metadata("design:type", Object)
|
|
92
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
101
93
|
], RemoteSSHContribution.prototype, "quickInputService", void 0);
|
|
102
|
-
__decorate([
|
|
94
|
+
(0, tslib_1.__decorate)([
|
|
103
95
|
(0, inversify_1.inject)(remote_ssh_connection_provider_1.RemoteSSHConnectionProvider),
|
|
104
|
-
__metadata("design:type", Object)
|
|
96
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
105
97
|
], RemoteSSHContribution.prototype, "sshConnectionProvider", void 0);
|
|
106
|
-
__decorate([
|
|
98
|
+
(0, tslib_1.__decorate)([
|
|
107
99
|
(0, inversify_1.inject)(core_1.MessageService),
|
|
108
|
-
__metadata("design:type", core_1.MessageService)
|
|
100
|
+
(0, tslib_1.__metadata)("design:type", core_1.MessageService)
|
|
109
101
|
], RemoteSSHContribution.prototype, "messageService", void 0);
|
|
110
|
-
__decorate([
|
|
102
|
+
(0, tslib_1.__decorate)([
|
|
111
103
|
(0, inversify_1.inject)(remote_preferences_1.RemotePreferences),
|
|
112
|
-
__metadata("design:type", Object)
|
|
104
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
113
105
|
], RemoteSSHContribution.prototype, "remotePreferences", void 0);
|
|
114
|
-
RemoteSSHContribution = __decorate([
|
|
106
|
+
RemoteSSHContribution = (0, tslib_1.__decorate)([
|
|
115
107
|
(0, inversify_1.injectable)()
|
|
116
108
|
], RemoteSSHContribution);
|
|
117
109
|
exports.RemoteSSHContribution = RemoteSSHContribution;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-ssh-contribution.js","sourceRoot":"","sources":["../../src/electron-browser/remote-ssh-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-ssh-contribution.js","sourceRoot":"","sources":["../../src/electron-browser/remote-ssh-contribution.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
18
|
exports.BackendRemoteServiceImpl = exports.REMOTE_START = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
25
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
26
21
|
const backend_remote_service_1 = require("@theia/core/lib/node/backend-remote-service");
|
|
27
22
|
exports.REMOTE_START = 'remote';
|
|
@@ -44,7 +39,7 @@ let BackendRemoteServiceImpl = class BackendRemoteServiceImpl extends backend_re
|
|
|
44
39
|
return this.isRemote;
|
|
45
40
|
}
|
|
46
41
|
};
|
|
47
|
-
BackendRemoteServiceImpl = __decorate([
|
|
42
|
+
BackendRemoteServiceImpl = (0, tslib_1.__decorate)([
|
|
48
43
|
(0, inversify_1.injectable)()
|
|
49
44
|
], BackendRemoteServiceImpl);
|
|
50
45
|
exports.BackendRemoteServiceImpl = BackendRemoteServiceImpl;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backend-remote-service-impl.js","sourceRoot":"","sources":["../../src/electron-node/backend-remote-service-impl.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"backend-remote-service-impl.js","sourceRoot":"","sources":["../../src/electron-node/backend-remote-service-impl.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAGhF,4DAA0D;AAE1D,wFAAmF;AAEtE,QAAA,YAAY,GAAG,QAAQ,CAAC;AAGrC,IAAa,wBAAwB,GAArC,MAAa,wBAAyB,SAAQ,6CAAoB;IAAlE;;QAEc,aAAQ,GAAY,KAAK,CAAC;IAkBxC,CAAC;IAhBG,SAAS,CAAC,IAAU;QAChB,IAAI,CAAC,MAAM,CAAC,oBAAY,EAAE;YACtB,WAAW,EAAE,6EAA6E;YAC1F,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;SACjB,CAAC,CAAC;IACP,CAAC;IAED,YAAY,CAAC,IAAe;QACxB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,oBAAY,CAAC,CAAC,CAAC;IAChD,CAAC;IAEQ,cAAc;QACnB,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;CAEJ,CAAA;AApBY,wBAAwB;IADpC,IAAA,sBAAU,GAAE;GACA,wBAAwB,CAoBpC;AApBY,4DAAwB"}
|
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteConnectionService = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
29
21
|
const core_1 = require("@theia/core");
|
|
30
22
|
const remote_copy_service_1 = require("./setup/remote-copy-service");
|
|
@@ -51,15 +43,15 @@ let RemoteConnectionService = class RemoteConnectionService {
|
|
|
51
43
|
}
|
|
52
44
|
}
|
|
53
45
|
};
|
|
54
|
-
__decorate([
|
|
46
|
+
(0, tslib_1.__decorate)([
|
|
55
47
|
(0, inversify_1.inject)(remote_copy_service_1.RemoteCopyService),
|
|
56
|
-
__metadata("design:type", remote_copy_service_1.RemoteCopyService)
|
|
48
|
+
(0, tslib_1.__metadata)("design:type", remote_copy_service_1.RemoteCopyService)
|
|
57
49
|
], RemoteConnectionService.prototype, "copyService", void 0);
|
|
58
|
-
__decorate([
|
|
50
|
+
(0, tslib_1.__decorate)([
|
|
59
51
|
(0, inversify_1.inject)(remote_native_dependency_service_1.RemoteNativeDependencyService),
|
|
60
|
-
__metadata("design:type", remote_native_dependency_service_1.RemoteNativeDependencyService)
|
|
52
|
+
(0, tslib_1.__metadata)("design:type", remote_native_dependency_service_1.RemoteNativeDependencyService)
|
|
61
53
|
], RemoteConnectionService.prototype, "nativeDependencyService", void 0);
|
|
62
|
-
RemoteConnectionService = __decorate([
|
|
54
|
+
RemoteConnectionService = (0, tslib_1.__decorate)([
|
|
63
55
|
(0, inversify_1.injectable)()
|
|
64
56
|
], RemoteConnectionService);
|
|
65
57
|
exports.RemoteConnectionService = RemoteConnectionService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-connection-service.js","sourceRoot":"","sources":["../../src/electron-node/remote-connection-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-connection-service.js","sourceRoot":"","sources":["../../src/electron-node/remote-connection-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAAkE;AAElE,sCAAyC;AACzC,qEAAgE;AAChE,+FAAyF;AAIzF,IAAa,uBAAuB,GAApC,MAAa,uBAAuB;IAApC;QAQuB,gBAAW,GAAG,IAAI,GAAG,EAA4B,CAAC;IAsBzE,CAAC;IApBG,aAAa,CAAC,EAAU;QACpB,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IACpC,CAAC;IAED,qBAAqB,CAAC,IAAY;QAC9B,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC;IACnG,CAAC;IAED,QAAQ,CAAC,UAA4B;QACjC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,EAAE,UAAU,CAAC,CAAC;QAChD,OAAO,iBAAU,CAAC,MAAM,CAAC,GAAG,EAAE;YAC1B,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IACP,CAAC;IAED,MAAM;QACF,KAAK,MAAM,UAAU,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,EAAE;YAChD,UAAU,CAAC,OAAO,EAAE,CAAC;SACxB;IACL,CAAC;CACJ,CAAA;AA3BG;IADC,IAAA,kBAAM,EAAC,uCAAiB,CAAC;2CACM,uCAAiB;4DAAC;AAGlD;IADC,IAAA,kBAAM,EAAC,gEAA6B,CAAC;2CACM,gEAA6B;wEAAC;AANjE,uBAAuB;IADnC,IAAA,sBAAU,GAAE;GACA,uBAAuB,CA8BnC;AA9BY,0DAAuB"}
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
18
|
exports.RemoteConnectionSocketProvider = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
25
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
26
21
|
const socket_io_client_1 = require("socket.io-client");
|
|
27
22
|
let RemoteConnectionSocketProvider = class RemoteConnectionSocketProvider {
|
|
@@ -31,7 +26,7 @@ let RemoteConnectionSocketProvider = class RemoteConnectionSocketProvider {
|
|
|
31
26
|
return socket;
|
|
32
27
|
}
|
|
33
28
|
};
|
|
34
|
-
RemoteConnectionSocketProvider = __decorate([
|
|
29
|
+
RemoteConnectionSocketProvider = (0, tslib_1.__decorate)([
|
|
35
30
|
(0, inversify_1.injectable)()
|
|
36
31
|
], RemoteConnectionSocketProvider);
|
|
37
32
|
exports.RemoteConnectionSocketProvider = RemoteConnectionSocketProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-connection-socket-provider.js","sourceRoot":"","sources":["../../src/electron-node/remote-connection-socket-provider.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-connection-socket-provider.js","sourceRoot":"","sources":["../../src/electron-node/remote-connection-socket-provider.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAA0D;AAC1D,uDAA8C;AAQ9C,IAAa,8BAA8B,GAA3C,MAAa,8BAA8B;IAEvC,cAAc,CAAC,OAAyC;QACpD,MAAM,MAAM,GAAG,IAAA,qBAAE,EAAC,kBAAkB,OAAO,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;QACnE,MAAM,CAAC,OAAO,EAAE,CAAC;QACjB,OAAO,MAAM,CAAC;IAClB,CAAC;CAEJ,CAAA;AARY,8BAA8B;IAD1C,IAAA,sBAAU,GAAE;GACA,8BAA8B,CAQ1C;AARY,wEAA8B"}
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
18
|
exports.RemoteProxyServerProvider = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
25
20
|
const promise_util_1 = require("@theia/core/lib/common/promise-util");
|
|
26
21
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
27
22
|
const net = require("net");
|
|
@@ -37,7 +32,7 @@ let RemoteProxyServerProvider = class RemoteProxyServerProvider {
|
|
|
37
32
|
return proxy;
|
|
38
33
|
}
|
|
39
34
|
};
|
|
40
|
-
RemoteProxyServerProvider = __decorate([
|
|
35
|
+
RemoteProxyServerProvider = (0, tslib_1.__decorate)([
|
|
41
36
|
(0, inversify_1.injectable)()
|
|
42
37
|
], RemoteProxyServerProvider);
|
|
43
38
|
exports.RemoteProxyServerProvider = RemoteProxyServerProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-proxy-server-provider.js","sourceRoot":"","sources":["../../src/electron-node/remote-proxy-server-provider.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-proxy-server-provider.js","sourceRoot":"","sources":["../../src/electron-node/remote-proxy-server-provider.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,sEAA+D;AAC/D,4DAA0D;AAC1D,2BAA2B;AAG3B,IAAa,yBAAyB,GAAtC,MAAa,yBAAyB;IAElC,KAAK,CAAC,cAAc,CAAC,QAAuC;QACxD,MAAM,QAAQ,GAAG,IAAI,uBAAQ,EAAE,CAAC;QAEhC,MAAM,KAAK,GAAG,GAAG,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE;YACpC,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAG,MAAM,CAAC,CAAC;QACvB,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,EAAE;YACd,QAAQ,CAAC,OAAO,EAAE,CAAC;QACvB,CAAC,CAAC,CAAC;QAEH,MAAM,QAAQ,CAAC,OAAO,CAAC;QACvB,OAAO,KAAK,CAAC;IACjB,CAAC;CAEJ,CAAA;AAfY,yBAAyB;IADrC,IAAA,sBAAU,GAAE;GACA,yBAAyB,CAerC;AAfY,8DAAyB"}
|
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteStatusServiceImpl = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
29
21
|
const remote_connection_service_1 = require("./remote-connection-service");
|
|
30
22
|
let RemoteStatusServiceImpl = class RemoteStatusServiceImpl {
|
|
@@ -44,11 +36,11 @@ let RemoteStatusServiceImpl = class RemoteStatusServiceImpl {
|
|
|
44
36
|
}
|
|
45
37
|
}
|
|
46
38
|
};
|
|
47
|
-
__decorate([
|
|
39
|
+
(0, tslib_1.__decorate)([
|
|
48
40
|
(0, inversify_1.inject)(remote_connection_service_1.RemoteConnectionService),
|
|
49
|
-
__metadata("design:type", remote_connection_service_1.RemoteConnectionService)
|
|
41
|
+
(0, tslib_1.__metadata)("design:type", remote_connection_service_1.RemoteConnectionService)
|
|
50
42
|
], RemoteStatusServiceImpl.prototype, "remoteConnectionService", void 0);
|
|
51
|
-
RemoteStatusServiceImpl = __decorate([
|
|
43
|
+
RemoteStatusServiceImpl = (0, tslib_1.__decorate)([
|
|
52
44
|
(0, inversify_1.injectable)()
|
|
53
45
|
], RemoteStatusServiceImpl);
|
|
54
46
|
exports.RemoteStatusServiceImpl = RemoteStatusServiceImpl;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-status-service.js","sourceRoot":"","sources":["../../src/electron-node/remote-status-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-status-service.js","sourceRoot":"","sources":["../../src/electron-node/remote-status-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAAkE;AAElE,2EAAsE;AAGtE,IAAa,uBAAuB,GAApC,MAAa,uBAAuB;IAKhC,KAAK,CAAC,SAAS,CAAC,SAAiB;QAC7B,MAAM,UAAU,GAAG,IAAI,CAAC,uBAAuB,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;QACjF,IAAI,UAAU,EAAE;YACZ,OAAO;gBACH,KAAK,EAAE,IAAI;gBACX,IAAI,EAAE,UAAU,CAAC,IAAI;gBACrB,IAAI,EAAE,UAAU,CAAC,IAAI;aACxB,CAAC;SACL;aAAM;YACH,OAAO;gBACH,KAAK,EAAE,KAAK;aACf,CAAC;SACL;IACL,CAAC;CACJ,CAAA;AAhBG;IADC,IAAA,kBAAM,EAAC,mDAAuB,CAAC;2CACG,mDAAuB;wEAAC;AAHlD,uBAAuB;IADnC,IAAA,sBAAU,GAAE;GACA,uBAAuB,CAmBnC;AAnBY,0DAAuB"}
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
18
|
exports.AppNativeDependencyContribution = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
25
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
26
21
|
const core_1 = require("@theia/core");
|
|
27
22
|
let AppNativeDependencyContribution = class AppNativeDependencyContribution {
|
|
@@ -51,7 +46,7 @@ let AppNativeDependencyContribution = class AppNativeDependencyContribution {
|
|
|
51
46
|
};
|
|
52
47
|
}
|
|
53
48
|
};
|
|
54
|
-
AppNativeDependencyContribution = __decorate([
|
|
49
|
+
AppNativeDependencyContribution = (0, tslib_1.__decorate)([
|
|
55
50
|
(0, inversify_1.injectable)()
|
|
56
51
|
], AppNativeDependencyContribution);
|
|
57
52
|
exports.AppNativeDependencyContribution = AppNativeDependencyContribution;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-native-dependency-contribution.js","sourceRoot":"","sources":["../../../src/electron-node/setup/app-native-dependency-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"app-native-dependency-contribution.js","sourceRoot":"","sources":["../../../src/electron-node/setup/app-native-dependency-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAA0D;AAG1D,sCAAiC;AAGjC,IAAa,+BAA+B,GAA5C,MAAa,+BAA+B;IAA5C;QAEI,uBAAkB,GAAG,0DAA0D,CAAC;IAuBpF,CAAC;IArBa,oBAAoB,CAAC,cAA8B,EAAE,YAAoB;QAC/E,IAAI,cAAc,CAAC,IAAI,KAAK,KAAK,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,cAAc,CAAC,IAAI,4DAA4D,CAAC,CAAC;SACxI;QACD,IAAI,QAAgB,CAAC;QACrB,IAAI,cAAc,CAAC,EAAE,KAAK,SAAE,CAAC,IAAI,CAAC,OAAO,EAAE;YACvC,QAAQ,GAAG,OAAO,CAAC;SACtB;aAAM,IAAI,cAAc,CAAC,EAAE,KAAK,SAAE,CAAC,IAAI,CAAC,GAAG,EAAE;YAC1C,QAAQ,GAAG,QAAQ,CAAC;SACvB;aAAM;YACH,QAAQ,GAAG,OAAO,CAAC;SACtB;QACD,OAAO,GAAG,IAAI,CAAC,kBAAkB,KAAK,YAAY,wBAAwB,QAAQ,IAAI,cAAc,CAAC,IAAI,MAAM,CAAC;IACpH,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,OAAwB;QACnC,OAAO;YACH,MAAM,EAAE,MAAM,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,cAAc,EAAE,OAAO,CAAC,YAAY,CAAC,CAAC;YACvG,OAAO,EAAE,KAAK;SACjB,CAAC;IACN,CAAC;CACJ,CAAA;AAzBY,+BAA+B;IAD3C,IAAA,sBAAU,GAAE;GACA,+BAA+B,CAyB3C;AAzBY,0EAA+B"}
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
18
|
exports.MainCopyContribution = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
25
20
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
26
21
|
let MainCopyContribution = class MainCopyContribution {
|
|
27
22
|
async copy(registry) {
|
|
@@ -31,7 +26,7 @@ let MainCopyContribution = class MainCopyContribution {
|
|
|
31
26
|
await registry.directory('lib/webview');
|
|
32
27
|
}
|
|
33
28
|
};
|
|
34
|
-
MainCopyContribution = __decorate([
|
|
29
|
+
MainCopyContribution = (0, tslib_1.__decorate)([
|
|
35
30
|
(0, inversify_1.injectable)()
|
|
36
31
|
], MainCopyContribution);
|
|
37
32
|
exports.MainCopyContribution = MainCopyContribution;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main-copy-contribution.js","sourceRoot":"","sources":["../../../src/electron-node/setup/main-copy-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"main-copy-contribution.js","sourceRoot":"","sources":["../../../src/electron-node/setup/main-copy-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAA0D;AAI1D,IAAa,oBAAoB,GAAjC,MAAa,oBAAoB;IAC7B,KAAK,CAAC,IAAI,CAAC,QAA4B;QACnC,QAAQ,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC9B,MAAM,QAAQ,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC;QAC3C,MAAM,QAAQ,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC;QACzC,MAAM,QAAQ,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC;IAC5C,CAAC;CACJ,CAAA;AAPY,oBAAoB;IADhC,IAAA,sBAAU,GAAE;GACA,oBAAoB,CAOhC;AAPY,oDAAoB"}
|
|
@@ -14,17 +14,9 @@
|
|
|
14
14
|
//
|
|
15
15
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
16
|
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.RemoteCopyRegistry = exports.RemoteCopyContribution = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
28
20
|
const application_package_1 = require("@theia/core/shared/@theia/application-package");
|
|
29
21
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
30
22
|
const glob_1 = require("glob");
|
|
@@ -68,11 +60,11 @@ let RemoteCopyRegistry = class RemoteCopyRegistry {
|
|
|
68
60
|
return target ? path.join(target, file) : file;
|
|
69
61
|
}
|
|
70
62
|
};
|
|
71
|
-
__decorate([
|
|
63
|
+
(0, tslib_1.__decorate)([
|
|
72
64
|
(0, inversify_1.inject)(application_package_1.ApplicationPackage),
|
|
73
|
-
__metadata("design:type", application_package_1.ApplicationPackage)
|
|
65
|
+
(0, tslib_1.__metadata)("design:type", application_package_1.ApplicationPackage)
|
|
74
66
|
], RemoteCopyRegistry.prototype, "applicationPackage", void 0);
|
|
75
|
-
RemoteCopyRegistry = __decorate([
|
|
67
|
+
RemoteCopyRegistry = (0, tslib_1.__decorate)([
|
|
76
68
|
(0, inversify_1.injectable)()
|
|
77
69
|
], RemoteCopyRegistry);
|
|
78
70
|
exports.RemoteCopyRegistry = RemoteCopyRegistry;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-copy-contribution.js","sourceRoot":"","sources":["../../../src/electron-node/setup/remote-copy-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF
|
|
1
|
+
{"version":3,"file":"remote-copy-contribution.js","sourceRoot":"","sources":["../../../src/electron-node/setup/remote-copy-contribution.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,uFAAmF;AACnF,4DAAkE;AAClE,+BAA4C;AAC5C,+BAAiC;AACjC,6BAA6B;AAG7B,MAAM,WAAW,GAAG,IAAA,gBAAS,EAAC,WAAY,CAAC,CAAC;AAE/B,QAAA,sBAAsB,GAAG,MAAM,CAAC,wBAAwB,CAAC,CAAC;AAsBvE,IAAa,kBAAkB,GAA/B,MAAa,kBAAkB;IAA/B;QAKuB,UAAK,GAAiB,EAAE,CAAC;IAqChD,CAAC;IAnCG,QAAQ;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;IAC9B,CAAC;IAED,KAAK,CAAC,IAAI,CAAC,OAAe,EAAE,MAAe;QACvC,MAAM,WAAW,GAAG,IAAI,CAAC,kBAAkB,CAAC,WAAW,CAAC;QACxD,MAAM,UAAU,GAAG,MAAM,WAAW,CAAC,OAAO,EAAE;YAC1C,GAAG,EAAE,WAAW;SACnB,CAAC,CAAC;QACH,MAAM,aAAa,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC;QAC/E,KAAK,MAAM,IAAI,IAAI,aAAa,EAAE;YAC9B,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YACjD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;gBACZ,IAAI,EAAE,IAAI;gBACV,MAAM,EAAE,UAAU;aACrB,CAAC,CAAC;SACN;IACL,CAAC;IAED,IAAI,CAAC,IAAY,EAAE,MAAe,EAAE,OAA2B;QAC3D,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACjD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,IAAI;YACV,MAAM,EAAE,UAAU;YAClB,OAAO;SACV,CAAC,CAAC;IACP,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,GAAW,EAAE,MAAe;QACxC,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,KAAK,EAAE,MAAM,CAAC,CAAC;IAC1C,CAAC;IAES,UAAU,CAAC,IAAY,EAAE,MAAe;QAC9C,OAAO,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IACnD,CAAC;CACJ,CAAA;AAvCG;IADC,IAAA,kBAAM,EAAC,wCAAkB,CAAC;2CACY,wCAAkB;8DAAC;AAHjD,kBAAkB;IAD9B,IAAA,sBAAU,GAAE;GACA,kBAAkB,CA0C9B;AA1CY,gDAAkB"}
|