@ripple-ts/language-server 0.3.33 → 0.3.35

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/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @ripple-ts/language-server
2
2
 
3
+ ## 0.3.35
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ [[`0ad85f1`](https://github.com/Ripple-TS/ripple/commit/0ad85f1107ce9bddb72cee44b908a34c5264c0b5),
9
+ [`7684132`](https://github.com/Ripple-TS/ripple/commit/7684132ed71db6c550ecbe1c623975ddbed96be5)]:
10
+ - @tsrx/core@0.0.15
11
+ - @tsrx/typescript-plugin@0.3.35
12
+
13
+ ## 0.3.34
14
+
15
+ ### Patch Changes
16
+
17
+ - [#986](https://github.com/Ripple-TS/ripple/pull/986)
18
+ [`b8cd7c4`](https://github.com/Ripple-TS/ripple/commit/b8cd7c4195505976995033a8e369502996f345ad)
19
+ Thanks [@leonidaz](https://github.com/leonidaz)! - Improve lazy destructuring
20
+ editor support for TSX targets, including typed virtual params, hover display
21
+ rewrites, and loose-mode diagnostics for duplicate lazy parameter names.
22
+
23
+ - Updated dependencies
24
+ [[`383feed`](https://github.com/Ripple-TS/ripple/commit/383feed84b09541c0b58992c09816b5a15c2d2d8),
25
+ [`cf4f06e`](https://github.com/Ripple-TS/ripple/commit/cf4f06e8bcbb41f863d047dfaa6d9d17ed212163),
26
+ [`fcd25aa`](https://github.com/Ripple-TS/ripple/commit/fcd25aa549db0d56ccbd596b657b856a5061e20f),
27
+ [`30126c7`](https://github.com/Ripple-TS/ripple/commit/30126c753c3a08809bacd07c8cf2eca84e8f8cbb),
28
+ [`b8cd7c4`](https://github.com/Ripple-TS/ripple/commit/b8cd7c4195505976995033a8e369502996f345ad),
29
+ [`b8cd7c4`](https://github.com/Ripple-TS/ripple/commit/b8cd7c4195505976995033a8e369502996f345ad),
30
+ [`3ddb1a9`](https://github.com/Ripple-TS/ripple/commit/3ddb1a92ffeb48a7d47c445b929b982a2b96e123),
31
+ [`fee8620`](https://github.com/Ripple-TS/ripple/commit/fee8620fa4e82a7c7e4adb3e434e9db552a3e157),
32
+ [`2fcacb4`](https://github.com/Ripple-TS/ripple/commit/2fcacb471d7780074f92b20c9b394f7650a941bb),
33
+ [`8e2aa8e`](https://github.com/Ripple-TS/ripple/commit/8e2aa8e75678c9ebc9b72055f4da474c82a8e834)]:
34
+ - @tsrx/typescript-plugin@0.3.34
35
+ - @tsrx/core@0.0.14
36
+
3
37
  ## 0.3.33
4
38
 
5
39
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/language-server",
3
- "version": "0.3.33",
3
+ "version": "0.3.35",
4
4
  "description": "Language Server Protocol implementation for Ripple",
5
5
  "main": "dist/server.js",
6
6
  "type": "module",
@@ -20,12 +20,12 @@
20
20
  "volar-service-typescript": "0.0.70",
21
21
  "vscode-languageserver-textdocument": "^1.0.12",
22
22
  "vscode-uri": "^3.1.0",
23
- "@tsrx/typescript-plugin": "0.3.33",
24
- "@tsrx/core": "0.0.13"
23
+ "@tsrx/typescript-plugin": "0.3.35",
24
+ "@tsrx/core": "0.0.15"
25
25
  },
26
26
  "devDependencies": {
27
27
  "tsdown": "^0.20.3",
28
- "@tsrx/ripple": "0.0.15"
28
+ "@tsrx/ripple": "0.0.17"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "typescript": "^5.9.3"
@@ -73,8 +73,8 @@ function parseCompilationErrorWithDocument(error, virtualCode, sourceMap, docume
73
73
  severity: DiagnosticSeverity.Error,
74
74
  range: get_error_range_from_source(error, document),
75
75
  message: error.message,
76
- source: 'Ripple',
77
- code: 'ripple-compile-error',
76
+ source: 'TSRX',
77
+ code: 'tsrx-compile-error',
78
78
  };
79
79
  }
80
80
 
@@ -114,8 +114,8 @@ function parseCompilationErrorWithDocument(error, virtualCode, sourceMap, docume
114
114
  severity: DiagnosticSeverity.Error,
115
115
  range: { start, end },
116
116
  message: error.message,
117
- source: 'Ripple',
118
- code: 'ripple-usage-error',
117
+ source: 'TSRX',
118
+ code: 'tsrx-usage-error',
119
119
  };
120
120
  }
121
121
 
@@ -45,7 +45,7 @@ function processDiagnostics(document, context, diagnostics) {
45
45
  const result = [];
46
46
 
47
47
  for (const diagnostic of diagnostics) {
48
- if (virtualCode.fatalErrors.length > 0 && diagnostic.code !== 'ripple-compile-error') {
48
+ if (virtualCode.fatalErrors.length > 0 && diagnostic.code !== 'tsrx-compile-error') {
49
49
  // skip all TS diagnostics since we're dealing directly with the source code
50
50
  continue;
51
51
  }