From 727c98c9dae516a2070eb950410314380a20c974 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Fri, 26 Jun 2026 22:03:19 +0900 Subject: style: switch from tabs to 2-space indentation --- packages/trace-store/src/cli.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'packages/trace-store/src/cli.ts') diff --git a/packages/trace-store/src/cli.ts b/packages/trace-store/src/cli.ts index 9092c91..80a5c8b 100644 --- a/packages/trace-store/src/cli.ts +++ b/packages/trace-store/src/cli.ts @@ -2,15 +2,15 @@ import { createTraceStore } from "./store.js"; const turnId = process.argv[2]; if (turnId === undefined) { - console.error("Usage: bun packages/trace-store/src/cli.ts [dbPath]"); - process.exit(1); + console.error("Usage: bun packages/trace-store/src/cli.ts [dbPath]"); + process.exit(1); } const dbPath = process.argv[3] ?? process.env.TRACE_DB_PATH ?? "./.dispatch-data/traces.db"; const store = createTraceStore({ path: dbPath }); try { - const output = store.easyView(turnId); - console.log(output); + const output = store.easyView(turnId); + console.log(output); } finally { - store.close(); + store.close(); } -- cgit v1.2.3