@eclipse-glsp/server 2.1.0-next.73 → 2.1.0-next.75

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.
@@ -18,7 +18,7 @@ exports.processPort = exports.createSocketCliParser = exports.defaultSocketLaunc
18
18
  ********************************************************************************/
19
19
  const cmd = require("commander");
20
20
  const cli_parser_1 = require("./cli-parser");
21
- exports.defaultSocketLaunchOptions = Object.assign(Object.assign({}, cli_parser_1.defaultLaunchOptions), { port: 0, host: 'localhost' });
21
+ exports.defaultSocketLaunchOptions = Object.assign(Object.assign({}, cli_parser_1.defaultLaunchOptions), { port: 0, host: '127.0.0.1' });
22
22
  function createSocketCliParser(defaultOptions = exports.defaultSocketLaunchOptions) {
23
23
  const parser = (0, cli_parser_1.createCliParser)(defaultOptions);
24
24
  parser.command
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/server",
3
- "version": "2.1.0-next.73+1c47d6b",
3
+ "version": "2.1.0-next.75+9f86a52",
4
4
  "description": "A js server framework for Eclipse GLSP",
5
5
  "keywords": [
6
6
  "eclipse",
@@ -59,7 +59,7 @@
59
59
  "watch": "tsc -w"
60
60
  },
61
61
  "dependencies": {
62
- "@eclipse-glsp/graph": "2.1.0-next.73+1c47d6b",
62
+ "@eclipse-glsp/graph": "2.1.0-next.75+9f86a52",
63
63
  "@eclipse-glsp/protocol": "next",
64
64
  "@types/uuid": "8.3.1",
65
65
  "commander": "^8.3.0",
@@ -76,5 +76,5 @@
76
76
  "publishConfig": {
77
77
  "access": "public"
78
78
  },
79
- "gitHead": "1c47d6b567f041e3a82791ee54aae0c2bb41d74f"
79
+ "gitHead": "9f86a52adb3d5ae444f8aeeed842fc01b443bd4e"
80
80
  }
@@ -24,7 +24,7 @@ export interface SocketLaunchOptions extends LaunchOptions {
24
24
  export const defaultSocketLaunchOptions: Required<SocketLaunchOptions> = {
25
25
  ...defaultLaunchOptions,
26
26
  port: 0,
27
- host: 'localhost'
27
+ host: '127.0.0.1'
28
28
  };
29
29
 
30
30
  export function createSocketCliParser<O extends SocketLaunchOptions = SocketLaunchOptions>(