@usethesource/rascal-vscode-dsl-lsp-server 0.11.1-fixed → 0.11.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.
Binary file
Binary file
@@ -178,7 +178,7 @@ class RascalExtension {
178
178
  shellArgs.push('-cp', this.buildTerminalJVMPath() + (classPath.length > 0 ? (path.delimiter + classPath.join(path.delimiter)) : ''));
179
179
  if (!this.isDeploy) {
180
180
  // for development mode we always start the terminal with debuging ready to go
181
- shellArgs.push('-Xdebug', '-Xrunjdwp:transport=dt_socket,address=9001,server=y,suspend=n');
181
+ shellArgs.push('-Xdebug', '-Xrunjdwp:transport=dt_socket,address=9871,server=y,suspend=n');
182
182
  }
183
183
  shellArgs.push();
184
184
  shellArgs.push('-Dfile.encoding=UTF8', '-Drascal.fallbackResolver=org.rascalmpl.vscode.lsp.uri.FallbackResolver', 'org.rascalmpl.vscode.lsp.terminal.LSPTerminalREPL', '--ideServicesPort', '' + ide.port, '--vfsPort', '' + this.vfsServer.port);
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "color": "#ffffff",
14
14
  "theme": "light"
15
15
  },
16
- "version": "0.11.1-fixed",
16
+ "version": "0.11.2",
17
17
  "engines": {
18
18
  "vscode": "^1.75.0"
19
19
  },
@@ -62,6 +62,6 @@
62
62
  "types": "lib/lsp/library.d.ts",
63
63
  "files": [
64
64
  "lib/**/*",
65
- "assets/jars/*.jar"
65
+ "assets/**/*"
66
66
  ]
67
- }
67
+ }