tailwint 1.0.2 → 1.0.3
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/dist/index.js +1 -0
- package/dist/lsp.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/lsp.js
CHANGED
|
@@ -223,6 +223,9 @@ export function notify(method, params) {
|
|
|
223
223
|
export async function shutdown() {
|
|
224
224
|
await send("shutdown", {}).catch(() => { });
|
|
225
225
|
notify("exit", {});
|
|
226
|
+
server.stdin.end();
|
|
227
|
+
server.stdout.destroy();
|
|
228
|
+
server.stderr.destroy();
|
|
226
229
|
server.kill();
|
|
227
230
|
}
|
|
228
231
|
export function fileUri(absPath) {
|