ai-credit 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reporter.js +2 -1
- package/package.json +1 -1
package/dist/reporter.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as fs from 'fs';
|
|
2
1
|
import chalk from 'chalk';
|
|
3
2
|
import Table from 'cli-table3';
|
|
3
|
+
import * as fs from 'fs';
|
|
4
4
|
import { AITool } from './types.js';
|
|
5
5
|
/**
|
|
6
6
|
* Tool display names
|
|
@@ -41,6 +41,7 @@ export class ConsoleReporter {
|
|
|
41
41
|
const title = 'AI Contribution Analysis';
|
|
42
42
|
const repoLine = `Repository: ${stats.repoPath}`;
|
|
43
43
|
const timeLine = `Scan time: ${stats.scanTime.toLocaleString()}`;
|
|
44
|
+
console.log();
|
|
44
45
|
console.log(chalk.dim('Leave a 🌟 star if you like it: https://github.com/debugtheworldbot/ai-credit'));
|
|
45
46
|
console.log();
|
|
46
47
|
console.log(chalk.cyan('╭' + '─'.repeat(boxWidth) + '╮'));
|