@tsrx/language-server 0.3.125 → 0.3.127
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/README.md
CHANGED
|
@@ -32,7 +32,7 @@ npx @tsrx/language-server --stdio
|
|
|
32
32
|
|
|
33
33
|
Configure your editor's LSP client for `*.tsrx` files with the language ID `tsrx`.
|
|
34
34
|
VS Code users can install the
|
|
35
|
-
[TSRX
|
|
35
|
+
[TSRX Syntax for VS Code](https://marketplace.visualstudio.com/items?itemName=TSRX.tsrx-vscode-plugin),
|
|
36
36
|
which bundles and starts this server automatically.
|
|
37
37
|
|
|
38
38
|
See the [TSRX documentation](https://tsrx.dev/) and
|
package/dist/language-server.js
CHANGED
|
@@ -23331,7 +23331,7 @@ const { log, logError } = createLogging("[TSRX Language Server]");
|
|
|
23331
23331
|
* `documentFormattingProvider`. Because they run against the virtual TS/CSS code
|
|
23332
23332
|
* rather than the `.tsrx` source, their edits don't map back and formatting is a
|
|
23333
23333
|
* no-op — yet the capability still makes the language client contribute a
|
|
23334
|
-
* "TSRX for VS Code" entry to "Format Document With…" that silently does nothing.
|
|
23334
|
+
* "TSRX Syntax for VS Code" entry to "Format Document With…" that silently does nothing.
|
|
23335
23335
|
* Formatting for `.tsrx` is owned by Prettier + @tsrx/prettier-plugin (configured
|
|
23336
23336
|
* as the default `[tsrx]` formatter in the VS Code extension), so we drop these
|
|
23337
23337
|
* capabilities to keep Prettier as the single, working formatter. On-type
|
|
@@ -23471,8 +23471,6 @@ function createTsrxLanguageServer() {
|
|
|
23471
23471
|
server
|
|
23472
23472
|
};
|
|
23473
23473
|
}
|
|
23474
|
-
/** @deprecated Use `createTsrxLanguageServer`. */
|
|
23475
|
-
const createRippleLanguageServer = createTsrxLanguageServer;
|
|
23476
23474
|
|
|
23477
23475
|
//#endregion
|
|
23478
23476
|
Object.defineProperty(exports, '__toCommonJS', {
|
|
@@ -23481,16 +23479,10 @@ Object.defineProperty(exports, '__toCommonJS', {
|
|
|
23481
23479
|
return __toCommonJS;
|
|
23482
23480
|
}
|
|
23483
23481
|
});
|
|
23484
|
-
Object.defineProperty(exports, 'createRippleLanguageServer', {
|
|
23485
|
-
enumerable: true,
|
|
23486
|
-
get: function () {
|
|
23487
|
-
return createRippleLanguageServer;
|
|
23488
|
-
}
|
|
23489
|
-
});
|
|
23490
23482
|
Object.defineProperty(exports, 'createTsrxLanguageServer', {
|
|
23491
23483
|
enumerable: true,
|
|
23492
23484
|
get: function () {
|
|
23493
23485
|
return createTsrxLanguageServer;
|
|
23494
23486
|
}
|
|
23495
23487
|
});
|
|
23496
|
-
//# sourceMappingURL=server-
|
|
23488
|
+
//# sourceMappingURL=server-DBoQjnqH.js.map
|