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 CHANGED
@@ -29,6 +29,7 @@ export async function run(options = {}) {
29
29
  cwd,
30
30
  absolute: true,
31
31
  nodir: true,
32
+ ignore: ["**/node_modules/**"],
32
33
  });
33
34
  files.push(...matches);
34
35
  }
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwint",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Tailwind CSS linter for CI — drives the official language server to catch class issues and auto-fix them",
5
5
  "license": "MIT",
6
6
  "author": "Peter Wang",