@ripple-ts/language-server 0.3.8 → 0.3.10
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 +14 -0
- package/package.json +3 -3
- package/src/completionPlugin.js +0 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @ripple-ts/language-server
|
|
2
2
|
|
|
3
|
+
## 0.3.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies []:
|
|
8
|
+
- @ripple-ts/typescript-plugin@0.3.10
|
|
9
|
+
|
|
10
|
+
## 0.3.9
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies []:
|
|
15
|
+
- @ripple-ts/typescript-plugin@0.3.9
|
|
16
|
+
|
|
3
17
|
## 0.3.8
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ripple-ts/language-server",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "Language Server Protocol implementation for Ripple",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"volar-service-typescript": "0.0.70",
|
|
20
20
|
"vscode-languageserver-textdocument": "^1.0.12",
|
|
21
21
|
"vscode-uri": "^3.1.0",
|
|
22
|
-
"@ripple-ts/typescript-plugin": "0.3.
|
|
22
|
+
"@ripple-ts/typescript-plugin": "0.3.10"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"ripple": "0.3.
|
|
25
|
+
"ripple": "0.3.10"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"typescript": "^5.9.3"
|
package/src/completionPlugin.js
CHANGED
|
@@ -227,15 +227,6 @@ const RIPPLE_SNIPPETS = [
|
|
|
227
227
|
insertTextFormat: InsertTextFormat.Snippet,
|
|
228
228
|
sortText: '0-track-getter-setter',
|
|
229
229
|
},
|
|
230
|
-
{
|
|
231
|
-
label: 'trackSplit',
|
|
232
|
-
kind: CompletionItemKind.Snippet,
|
|
233
|
-
detail: 'Split props with trackSplit',
|
|
234
|
-
documentation: 'Destructure props while preserving reactivity',
|
|
235
|
-
insertText: "const [${1:children}, ${2:rest}] = trackSplit(props, [${3:'children'}]);",
|
|
236
|
-
insertTextFormat: InsertTextFormat.Snippet,
|
|
237
|
-
sortText: '0-trackSplit',
|
|
238
|
-
},
|
|
239
230
|
{
|
|
240
231
|
label: 'effect',
|
|
241
232
|
kind: CompletionItemKind.Snippet,
|
|
@@ -343,14 +334,6 @@ const RIPPLE_IMPORTS = [
|
|
|
343
334
|
insertTextFormat: InsertTextFormat.Snippet,
|
|
344
335
|
sortText: '0-import-effect',
|
|
345
336
|
},
|
|
346
|
-
{
|
|
347
|
-
label: 'import trackSplit',
|
|
348
|
-
kind: CompletionItemKind.Snippet,
|
|
349
|
-
detail: 'Import trackSplit from ripple',
|
|
350
|
-
insertText: "import { trackSplit } from 'ripple';",
|
|
351
|
-
insertTextFormat: InsertTextFormat.Snippet,
|
|
352
|
-
sortText: '0-import-trackSplit',
|
|
353
|
-
},
|
|
354
337
|
{
|
|
355
338
|
label: 'import untrack',
|
|
356
339
|
kind: CompletionItemKind.Snippet,
|