chore: fix pre-release CI (#1213)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Ralph Khreish
2025-09-18 00:34:13 +02:00
committed by GitHub
parent 1a3a528bf7
commit 137ef36278
13 changed files with 6776 additions and 544 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@tm/core",
"version": "1.0.0",
"version": "0.26.0",
"private": true,
"description": "Core library for Task Master - TypeScript task management system",
"type": "module",

View File

@@ -65,7 +65,7 @@ export class SupabaseTaskRepository {
.from('tasks')
.select('*')
.eq('account_id', accountId)
.eq('id', taskId)
.ilike('display_id', taskId)
.single();
if (error) {