@theia/remote 1.64.0-next.0 → 1.64.0-next.17

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.
@@ -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 = "18.17.0";
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 = '18.17.0';
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.stdout);
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.64.0-next.0+0dcdcd4d3",
3
+ "version": "1.64.0-next.17+58507bbed",
4
4
  "description": "Theia - Remote",
5
5
  "dependencies": {
6
- "@theia/core": "1.64.0-next.0+0dcdcd4d3",
7
- "@theia/filesystem": "1.64.0-next.0+0dcdcd4d3",
8
- "@theia/userstorage": "1.64.0-next.0+0dcdcd4d3",
6
+ "@theia/core": "1.64.0-next.17+58507bbed",
7
+ "@theia/filesystem": "1.64.0-next.17+58507bbed",
8
+ "@theia/userstorage": "1.64.0-next.17+58507bbed",
9
9
  "archiver": "^5.3.1",
10
10
  "decompress": "^4.2.1",
11
11
  "decompress-tar": "^4.0.0",
@@ -65,5 +65,5 @@
65
65
  "nyc": {
66
66
  "extends": "../../configs/nyc.json"
67
67
  },
68
- "gitHead": "0dcdcd4d398f4106746d0f701205abdb668383f3"
68
+ "gitHead": "58507bbedb95724735981f44f034e7036fa2f19e"
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 = '18.17.0';
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.stdout);
131
+ throw new Error('Could not start remote system: ' + result.stderr);
132
132
  } else {
133
133
  return Number(match[1]);
134
134
  }