@theia/remote 1.63.1 → 1.63.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/lib/electron-node/setup/remote-node-setup-service.d.ts +1 -1
- package/lib/electron-node/setup/remote-node-setup-service.js +1 -1
- package/lib/electron-node/setup/remote-setup-service.js +1 -1
- package/package.json +6 -6
- package/src/electron-node/setup/remote-node-setup-service.ts +1 -1
- package/src/electron-node/setup/remote-setup-service.ts +1 -1
|
@@ -6,7 +6,7 @@ import { RemotePlatform } from '@theia/core/lib/node/remote/remote-cli-contribut
|
|
|
6
6
|
*
|
|
7
7
|
* Native dependencies are compiled against this version.
|
|
8
8
|
*/
|
|
9
|
-
export declare const REMOTE_NODE_VERSION = "
|
|
9
|
+
export declare const REMOTE_NODE_VERSION = "22.15.1";
|
|
10
10
|
export declare class RemoteNodeSetupService {
|
|
11
11
|
protected readonly requestService: RequestService;
|
|
12
12
|
protected readonly scriptService: RemoteSetupScriptService;
|
|
@@ -29,7 +29,7 @@ const core_1 = require("@theia/core");
|
|
|
29
29
|
*
|
|
30
30
|
* Native dependencies are compiled against this version.
|
|
31
31
|
*/
|
|
32
|
-
exports.REMOTE_NODE_VERSION = '
|
|
32
|
+
exports.REMOTE_NODE_VERSION = '22.15.1';
|
|
33
33
|
let RemoteNodeSetupService = class RemoteNodeSetupService {
|
|
34
34
|
getNodeDirectoryName(platform) {
|
|
35
35
|
return `node-v${exports.REMOTE_NODE_VERSION}-${this.getPlatformName(platform)}-${platform.arch}`;
|
|
@@ -91,7 +91,7 @@ let RemoteSetupService = class RemoteSetupService {
|
|
|
91
91
|
const result = await connection.execPartial(`${prefix}cd "${remotePath}";${nodeExecutable}`, stdout => localAddressRegex.test(stdout), [mainJsFile, ...args]);
|
|
92
92
|
const match = localAddressRegex.exec(result.stdout);
|
|
93
93
|
if (!match) {
|
|
94
|
-
throw new Error('Could not start remote system: ' + result.
|
|
94
|
+
throw new Error('Could not start remote system: ' + result.stderr);
|
|
95
95
|
}
|
|
96
96
|
else {
|
|
97
97
|
return Number(match[1]);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/remote",
|
|
3
|
-
"version": "1.63.
|
|
3
|
+
"version": "1.63.2",
|
|
4
4
|
"description": "Theia - Remote",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.63.
|
|
7
|
-
"@theia/filesystem": "1.63.
|
|
8
|
-
"@theia/userstorage": "1.63.
|
|
6
|
+
"@theia/core": "1.63.2",
|
|
7
|
+
"@theia/filesystem": "1.63.2",
|
|
8
|
+
"@theia/userstorage": "1.63.2",
|
|
9
9
|
"archiver": "^5.3.1",
|
|
10
10
|
"decompress": "^4.2.1",
|
|
11
11
|
"decompress-tar": "^4.0.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"watch": "theiaext watch"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@theia/ext-scripts": "1.63.
|
|
57
|
+
"@theia/ext-scripts": "1.63.2",
|
|
58
58
|
"@types/archiver": "^5.3.2",
|
|
59
59
|
"@types/decompress": "^4.2.4",
|
|
60
60
|
"@types/express-http-proxy": "^1.6.6",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"nyc": {
|
|
66
66
|
"extends": "../../configs/nyc.json"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "dc03f4a5e7cd301c64bcb1cfd8fbacc7f83255d1"
|
|
69
69
|
}
|
|
@@ -29,7 +29,7 @@ import { OS } from '@theia/core';
|
|
|
29
29
|
*
|
|
30
30
|
* Native dependencies are compiled against this version.
|
|
31
31
|
*/
|
|
32
|
-
export const REMOTE_NODE_VERSION = '
|
|
32
|
+
export const REMOTE_NODE_VERSION = '22.15.1';
|
|
33
33
|
|
|
34
34
|
@injectable()
|
|
35
35
|
export class RemoteNodeSetupService {
|
|
@@ -128,7 +128,7 @@ export class RemoteSetupService {
|
|
|
128
128
|
|
|
129
129
|
const match = localAddressRegex.exec(result.stdout);
|
|
130
130
|
if (!match) {
|
|
131
|
-
throw new Error('Could not start remote system: ' + result.
|
|
131
|
+
throw new Error('Could not start remote system: ' + result.stderr);
|
|
132
132
|
} else {
|
|
133
133
|
return Number(match[1]);
|
|
134
134
|
}
|