@ripple-ts/language-server 0.3.25 → 0.3.27

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,48 @@
1
1
  # @ripple-ts/language-server
2
2
 
3
+ ## 0.3.27
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @tsrx/typescript-plugin@0.3.27
9
+
10
+ ## 0.3.26
11
+
12
+ ### Patch Changes
13
+
14
+ - [#916](https://github.com/Ripple-TS/ripple/pull/916)
15
+ [`5b01246`](https://github.com/Ripple-TS/ripple/commit/5b01246b8e1a3a3c7c9da294f3ebda8c73af3ee7)
16
+ Thanks [@trueadm](https://github.com/trueadm)! - Rename the TypeScript plugin
17
+ package to `@tsrx/typescript-plugin` and update local consumers, templates, and
18
+ playgrounds to use the new package name.
19
+
20
+ - [`68d80f8`](https://github.com/Ripple-TS/ripple/commit/68d80f8c7a6398692e00497b90cb3d0ba981aea3)
21
+ Thanks [@leonidaz](https://github.com/leonidaz)! - Correct package versions.
22
+
23
+ - Updated dependencies
24
+ [[`5b01246`](https://github.com/Ripple-TS/ripple/commit/5b01246b8e1a3a3c7c9da294f3ebda8c73af3ee7),
25
+ [`68d80f8`](https://github.com/Ripple-TS/ripple/commit/68d80f8c7a6398692e00497b90cb3d0ba981aea3),
26
+ [`fab49f7`](https://github.com/Ripple-TS/ripple/commit/fab49f7da8ec13c981f1c7b3102703d0c349fc1e)]:
27
+ - @tsrx/typescript-plugin@0.3.26
28
+ - @tsrx/core@0.0.7
29
+
30
+ ## 1.0.1
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies []:
35
+ - @ripple-ts/typescript-plugin@1.0.1
36
+
37
+ ## 1.0.0
38
+
39
+ ### Patch Changes
40
+
41
+ - Updated dependencies
42
+ [[`e9da9cb`](https://github.com/Ripple-TS/ripple/commit/e9da9cbdd42c28f129ee643366c06f8779b8f931)]:
43
+ - @tsrx/core@0.0.6
44
+ - @ripple-ts/typescript-plugin@1.0.0
45
+
3
46
  ## 0.3.25
4
47
 
5
48
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/language-server",
3
- "version": "0.3.25",
3
+ "version": "0.3.27",
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
- "@ripple-ts/typescript-plugin": "0.3.25",
24
- "@tsrx/core": "0.0.5"
23
+ "@tsrx/typescript-plugin": "0.3.27",
24
+ "@tsrx/core": "0.0.7"
25
25
  },
26
26
  "devDependencies": {
27
27
  "tsdown": "^0.20.3",
28
- "@tsrx/ripple": "0.0.6"
28
+ "@tsrx/ripple": "0.0.9"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "typescript": "^5.9.3"
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @import {Diagnostic, Range, LanguageServicePlugin, LanguageServiceContext, Position, Mapper} from '@volar/language-server';
3
3
  * @import {TextDocument} from 'vscode-languageserver-textdocument';
4
- * @import {TSRXVirtualCodeInstance} from '@ripple-ts/typescript-plugin/src/language.js';
4
+ * @import {TSRXVirtualCodeInstance} from '@tsrx/typescript-plugin/src/language.js';
5
5
  */
6
6
  /** @import {TSRXCompileError} from '@tsrx/ripple'; */
7
7
 
@@ -9,7 +9,7 @@ import {
9
9
  getRippleDirForFile,
10
10
  getCachedTypeDefinitionFile,
11
11
  getCachedTypeMatches,
12
- } from '@ripple-ts/typescript-plugin/src/language.js';
12
+ } from '@tsrx/typescript-plugin/src/language.js';
13
13
 
14
14
  const { log } = createLogging('[Ripple Definition Plugin]');
15
15
  /** @type {string | undefined} */
package/src/server.js CHANGED
@@ -13,10 +13,7 @@ import { createCompletionPlugin } from './completionPlugin.js';
13
13
  import { createAutoInsertPlugin } from './autoInsertPlugin.js';
14
14
  import { createTypeScriptDiagnosticFilterPlugin } from './typescriptDiagnosticPlugin.js';
15
15
  import { createDocumentHighlightPlugin } from './documentHighlightPlugin.js';
16
- import {
17
- getRippleLanguagePlugin,
18
- resolveConfig,
19
- } from '@ripple-ts/typescript-plugin/src/language.js';
16
+ import { getRippleLanguagePlugin, resolveConfig } from '@tsrx/typescript-plugin/src/language.js';
20
17
  import { createTypeScriptServices } from './typescriptService.js';
21
18
  import { create as createCssService } from 'volar-service-css';
22
19
 
package/src/utils.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /** @import { TextDocument } from 'vscode-languageserver-textdocument' */
2
2
  /** @import { LanguageServiceContext, Mapper, SourceScript } from '@volar/language-server' */
3
- /** @import {TSRXVirtualCodeInstance} from '@ripple-ts/typescript-plugin/src/language.js'; */
3
+ /** @import {TSRXVirtualCodeInstance} from '@tsrx/typescript-plugin/src/language.js'; */
4
4
  /** @import { isIdentifierObfuscated, deobfuscateIdentifier, IDENTIFIER_OBFUSCATION_PREFIX } from '@tsrx/core' */
5
5
 
6
6
  import { URI } from 'vscode-uri';
@@ -9,7 +9,7 @@ import {
9
9
  getWordFromPosition,
10
10
  charAllowedWordRegex,
11
11
  DEBUG,
12
- } from '@ripple-ts/typescript-plugin/src/utils.js';
12
+ } from '@tsrx/typescript-plugin/src/utils.js';
13
13
 
14
14
  const IMPORT_EXPORT_REGEX = {
15
15
  import: {