We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041209a commit 82d53aeCopy full SHA for 82d53ae
src/utils/banner.ts
@@ -19,7 +19,7 @@ const BANNER = [
19
"╚═╝╚═╝╚═╝ ╩ ╚═╝╚═╝╩╚═╩ ╩╩ ╚═╝",
20
];
21
22
-const TAGLINE = " made with ♥ from scrapegraphai team";
+const TAGLINE = "made with ♥ from scrapegraphai team";
23
24
const BANNER_COLOR = "#bd93f9";
25
@@ -30,5 +30,8 @@ export function showBanner() {
30
console.log(text);
31
console.log(chalk.hex(BANNER_COLOR)(TAGLINE));
32
console.log(chalk.hex(BANNER_COLOR)(`v${getVersion()}`));
33
+ if (process.env.JUST_SCRAPE_API_URL) {
34
+ console.log(chalk.yellow(`→ Custom API: ${process.env.JUST_SCRAPE_API_URL}`));
35
+ }
36
console.log();
37
}
0 commit comments