@narumitw/pi-biome-lsp 0.1.17 → 0.1.19

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/biome-lsp.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narumitw/pi-biome-lsp",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Pi extension that exposes Biome language-server tools for diagnostics, formatting, and fixes.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/biome-lsp.ts CHANGED
@@ -153,7 +153,7 @@ const biomeFormatTool = defineTool({
153
153
  const client = new LspClient(getServerCommand(), root, getTimeoutMs());
154
154
  const abort = () => client.close();
155
155
  signal?.addEventListener("abort", abort, { once: true });
156
- ctx.ui.setStatus(STATUS_KEY, "biome-lsp: format");
156
+ ctx.ui.setStatus(STATUS_KEY, "🧬 format");
157
157
 
158
158
  try {
159
159
  await client.start();
@@ -210,7 +210,7 @@ const biomeFixTool = defineTool({
210
210
  const client = new LspClient(getServerCommand(), root, getTimeoutMs());
211
211
  const abort = () => client.close();
212
212
  signal?.addEventListener("abort", abort, { once: true });
213
- ctx.ui.setStatus(STATUS_KEY, "biome-lsp: fix");
213
+ ctx.ui.setStatus(STATUS_KEY, "🧬 fix");
214
214
 
215
215
  try {
216
216
  await client.start();
@@ -280,7 +280,7 @@ async function runDiagnostics(
280
280
  const client = new LspClient(getServerCommand(), root, getTimeoutMs());
281
281
  const abort = () => client.close();
282
282
  signal?.addEventListener("abort", abort, { once: true });
283
- ctx.ui.setStatus(STATUS_KEY, "biome-lsp: diagnostics");
283
+ ctx.ui.setStatus(STATUS_KEY, "🧬 diagnostics");
284
284
 
285
285
  try {
286
286
  await client.start();