release: v1.0.6 - enable debug logging

This commit is contained in:
Troed Sångberg
2026-06-14 19:32:05 +02:00
parent b249c65e2c
commit 7fd46391c4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@troed/oc-ls-stats",
"version": "1.0.5",
"version": "1.0.6",
"type": "module",
"exports": {
"./tui": {
+1 -1
View File
@@ -3,7 +3,7 @@ import type { TuiPlugin, TuiPluginModule } from "@opencode-ai/plugin/tui"
import { createMemo, createSignal } from "solid-js"
import { appendFileSync } from "fs"
const DEBUG_ENABLED = false
const DEBUG_ENABLED = true
const DEBUG_LOG = "/tmp/oc-ls-stats-debug.log"
function debug(...args: unknown[]) {
if (!DEBUG_ENABLED) return