MCPcopy Index your code
hub / github.com/sourcebot-dev/sourcebot / note

Function note

packages/setupWizard/src/utils.ts:127–136  ·  view source on GitHub ↗
(message: string, title?: string)

Source from the content-addressed store, hash-verified

125}
126
127export function note(message: string, title?: string): void {
128 console.log();
129 if (title) {
130 console.log(chalk.cyan('◆ ') + chalk.bold(title));
131 }
132 for (const line of message.split('\n')) {
133 console.log(chalk.gray('│ ') + line);
134 }
135 console.log();
136}

Callers 8

mainFunction · 0.85
collectGitLabConfigFunction · 0.85
collectGitHubConfigFunction · 0.85
collectModelsFunction · 0.85
collectAzureDevOpsConfigFunction · 0.85
collectLocalReposConfigFunction · 0.85
collectBitbucketCloudFunction · 0.85
collectBitbucketServerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected