Skip to content

Commit cac8db4

Browse files
committed
fix!: change utils -> utils.internal
1 parent c53b35c commit cac8db4

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/commands/daily.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { loadDailyUsageData } from '../data-loader.ts';
1111
import { detectMismatches, printMismatchReport } from '../debug.ts';
1212
import { log, logger } from '../logger.ts';
1313
import { sharedCommandConfig } from '../shared-args.internal.ts';
14-
import { formatCurrency, formatNumber } from '../utils.ts';
14+
import { formatCurrency, formatNumber } from '../utils.internal.ts';
1515

1616
export const dailyCommand = define({
1717
name: 'daily',

src/commands/monthly.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { loadMonthlyUsageData } from '../data-loader.ts';
1111
import { detectMismatches, printMismatchReport } from '../debug.ts';
1212
import { log, logger } from '../logger.ts';
1313
import { sharedCommandConfig } from '../shared-args.internal.ts';
14-
import { formatCurrency, formatNumber } from '../utils.ts';
14+
import { formatCurrency, formatNumber } from '../utils.internal.ts';
1515

1616
export const monthlyCommand = define({
1717
name: 'monthly',

src/commands/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { loadSessionData } from '../data-loader.ts';
1111
import { detectMismatches, printMismatchReport } from '../debug.ts';
1212
import { log, logger } from '../logger.ts';
1313
import { sharedCommandConfig } from '../shared-args.internal.ts';
14-
import { formatCurrency, formatNumber } from '../utils.ts';
14+
import { formatCurrency, formatNumber } from '../utils.internal.ts';
1515

1616
export const sessionCommand = define({
1717
name: 'session',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, test } from 'bun:test';
2-
import { formatCurrency, formatNumber } from './utils.ts';
2+
import { formatCurrency, formatNumber } from './utils.internal.ts';
33

44
describe('formatNumber', () => {
55
test('formats positive numbers with comma separators', () => {
File renamed without changes.

0 commit comments

Comments
 (0)