Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Commit c67a52a

Browse files
committed
chore(deps): update dependencies
- Update Deno standard library to version 0.224.0 * Upgrade dependencies to latest compatible versions * Ensure compatibility with latest Deno release - Add missing import for `colors` module from Deno standard library BREAKING CHANGE: None
1 parent 5fcf717 commit c67a52a

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

deno.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Anthropic from "npm:@anthropic-ai/sdk";
44
import { ensureDir } from "https://deno.land/std/fs/ensure_dir.ts";
55
import { join } from "https://deno.land/std/path/mod.ts";
66
import { parse } from "https://deno.land/std/flags/mod.ts";
7-
import * as colors from "jsr:@std/fmt/colors";
7+
import * as colors from "https://deno.land/std/fmt/colors.ts";
88

99
// Export enum first
1010
export enum CommitFormat {
@@ -759,7 +759,7 @@ async function searchAndSelectIssue(): Promise<{ number: number, title: string }
759759
}
760760

761761
console.log(`\n${COLORS.header("Found issues:")}`);
762-
console.log('┌──────┬───────┬──────────────────────────────────────────────────────────┐');
762+
console.log('┌──────┬────��───┬──────────────────────────────────────────────────────────┐');
763763
console.log('│ Sel# │ ID │ Title │');
764764
console.log('├──────┼────────┼──────────────────────────────────────────────────────────┤');
765765

0 commit comments

Comments
 (0)