@effect/language-service 0.66.1 → 0.67.0
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 +3 -0
- package/cli.js +535 -336
- package/cli.js.map +1 -1
- package/effect-lsp-patch-utils.js +14 -3
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +14 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +14 -3
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -208,6 +208,9 @@ Automatically updates Effect codegens in your TypeScript files. This command sca
|
|
|
208
208
|
### `effect-language-service diagnostics`
|
|
209
209
|
Provides a way to get through a CLI the list of Effect specific diagnostics; without patching your typescript installation. A --file option may be used to get diagnostics for a specific file, or --project with a tsconfig file to get an entire project.
|
|
210
210
|
|
|
211
|
+
### `effect-language-service quickfixes`
|
|
212
|
+
Shows diagnostics that have available quick fixes along with their proposed code changes. This is useful for previewing what fixes the language service can apply to your code. Use `--file` to check a specific file, or `--project` with a tsconfig file to check an entire project. The output displays each diagnostic with its location and the diff of proposed changes.
|
|
213
|
+
|
|
211
214
|
### `effect-language-service check`
|
|
212
215
|
This command runs a check of the setup of the patching mechanism of the LSP, to understand if typescript has been patched or not.
|
|
213
216
|
|