@effect/language-service 0.76.0 → 0.77.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 +1 -0
- package/cli.js +1240 -312
- package/cli.js.map +1 -1
- package/effect-lsp-patch-utils.js +850 -20
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +882 -25
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +850 -20
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -85,6 +85,7 @@ And you're done! You'll now be able to use a set of refactors and diagnostics th
|
|
|
85
85
|
- Suggest removing redundant identifier argument when it equals the tag value in `Schema.TaggedClass`, `Schema.TaggedError`, or `Schema.TaggedRequest`
|
|
86
86
|
- Suggest using `Schema.is` instead of `instanceof` for Effect Schema types
|
|
87
87
|
- Suggest using `Effect.void` instead of `Effect.succeed(undefined)` or `Effect.succeed(void 0)`
|
|
88
|
+
- Warn when using outdated Effect v3 APIs in an Effect v4 project, with guidance on the correct v4 replacement (renamed, changed, or removed APIs)
|
|
88
89
|
|
|
89
90
|
### Completions
|
|
90
91
|
|