Skip to content

Commit

Permalink
chore(deps): update dependencies
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
sidedwards committed Oct 27, 2024
1 parent 5fcf717 commit c67a52a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Anthropic from "npm:@anthropic-ai/sdk";
import { ensureDir } from "https://deno.land/std/fs/ensure_dir.ts";
import { join } from "https://deno.land/std/path/mod.ts";
import { parse } from "https://deno.land/std/flags/mod.ts";
import * as colors from "jsr:@std/fmt/colors";
import * as colors from "https://deno.land/std/fmt/colors.ts";

// Export enum first
export enum CommitFormat {
Expand Down Expand Up @@ -759,7 +759,7 @@ async function searchAndSelectIssue(): Promise<{ number: number, title: string }
}

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

Expand Down

0 comments on commit c67a52a

Please sign in to comment.