@effect/language-service 0.37.0 → 0.38.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 +2 -1
- package/cli.js.map +1 -1
- package/index.js +296 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,6 +86,7 @@ And you're done! You'll now be able to use a set of refactors and diagnostics th
|
|
|
86
86
|
- Remove unnecessary `Effect.gen` definitions that contains a single `yield` statement.
|
|
87
87
|
- Wrap an `Effect` expression with `Effect.gen`
|
|
88
88
|
- Toggle between pipe styles `X.pipe(Y)` and `pipe(X, Y)`
|
|
89
|
+
- Layer Magic: Automatically compose and build layers based on service dependencies
|
|
89
90
|
|
|
90
91
|
### Miscellaneous
|
|
91
92
|
- Renaming a class name, will rename the identifier as well for TaggedError, TaggedClass, etc...
|
package/cli.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
"use strict";
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
@@ -30065,7 +30066,7 @@ var cliCommand = make58(
|
|
|
30065
30066
|
).pipe(withSubcommands3([patch9, unpatch, check2]));
|
|
30066
30067
|
var main = run8(cliCommand, {
|
|
30067
30068
|
name: "effect-language-service",
|
|
30068
|
-
version: "0.0.
|
|
30069
|
+
version: "0.0.2"
|
|
30069
30070
|
});
|
|
30070
30071
|
main(process.argv).pipe(
|
|
30071
30072
|
provide2(layer11),
|