yingclaw 1.5.1 → 1.5.2
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/bin/cli.js +2 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -14,8 +14,9 @@ async function getBanner() {
|
|
|
14
14
|
const figlet = require('figlet');
|
|
15
15
|
const boxen = (await import('boxen')).default;
|
|
16
16
|
const title = figlet.textSync('claw', { font: 'Standard', horizontalLayout: 'fitted' });
|
|
17
|
+
const subtitle = chalk.dim('Claude Code × 国产大模型 一键接入') + ' ' + chalk.cyan(`v${pkg.version}`);
|
|
17
18
|
return boxen(
|
|
18
|
-
chalk.cyan.bold(title) + '\n' +
|
|
19
|
+
chalk.cyan.bold(title) + '\n' + subtitle,
|
|
19
20
|
{ padding: { top: 0, bottom: 0, left: 2, right: 2 }, borderStyle: 'round', borderColor: 'cyan', margin: { top: 1, bottom: 0 } }
|
|
20
21
|
);
|
|
21
22
|
}
|