summaryrefslogtreecommitdiffhomepage
path: root/script/stats.ts
diff options
context:
space:
mode:
authorKit Langton <[email protected]>2026-04-15 22:01:53 -0400
committerGitHub <[email protected]>2026-04-16 02:01:53 +0000
commitcce05c16658a39d091f658bdb53dcce1e88c66d0 (patch)
treebedd5e0c1d9105854e4dbf8ec0c6f7e1337df4c6 /script/stats.ts
parent34213d444681a8953c5693bd01dd754c4e79a30b (diff)
downloadopencode-cce05c16658a39d091f658bdb53dcce1e88c66d0.tar.gz
opencode-cce05c16658a39d091f658bdb53dcce1e88c66d0.zip
fix: clean up 49 unused variables, catch params, and stale imports (#22695)
Diffstat (limited to 'script/stats.ts')
-rwxr-xr-xscript/stats.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/stats.ts b/script/stats.ts
index 318b590af..9201e26e4 100755
--- a/script/stats.ts
+++ b/script/stats.ts
@@ -193,7 +193,7 @@ console.log("Fetching GitHub releases for anomalyco/opencode...\n")
const releases = await fetchReleases()
console.log(`\nFetched ${releases.length} releases total\n`)
-const { total: githubTotal, stats } = calculate(releases)
+const { total: githubTotal } = calculate(releases)
console.log("Fetching npm all-time downloads for opencode-ai...\n")
const npmDownloads = await fetchNpmDownloads("opencode-ai")