From 249a07c6ae51b005c0dfefdf6c1ad4cac417542c Mon Sep 17 00:00:00 2001 From: Adam McQuilkin <46639306+ajmcquilkin@users.noreply.github.com> Date: Mon, 9 Feb 2026 22:59:15 -0800 Subject: [PATCH 1/4] Initial commit --- src/cli/publish/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cli/publish/index.ts b/src/cli/publish/index.ts index 05738b7..4382455 100644 --- a/src/cli/publish/index.ts +++ b/src/cli/publish/index.ts @@ -92,10 +92,14 @@ function displayBuildDetails(build: BuildStatusResponse): void { console.log(chalk.bold.cyan("\n✨ Next Steps")); console.log(chalk.gray("─".repeat(50))); console.log( - chalk.white("Your functions are ready to be invoked! Invoke using cURL:"), + chalk.white("Your functions are ready to be invoked!"), ); build.builtFunctions.forEach((func) => { + console.log(chalk.white(`\nInvoke using the CLI:`)); + console.log(chalk.gray(`\n bb invoke ${func.id} --params '{"hello": "world"}'`)); + + console.log(chalk.white(`\nOr using cURL:`)); console.log(chalk.gray("\n curl --request POST \\")); console.log( chalk.gray( From 05278fdf748d795a6ea138dddc1cdfdef22a2b0e Mon Sep 17 00:00:00 2001 From: Adam McQuilkin <46639306+ajmcquilkin@users.noreply.github.com> Date: Mon, 9 Feb 2026 23:03:45 -0800 Subject: [PATCH 2/4] Formatting --- src/cli/publish/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cli/publish/index.ts b/src/cli/publish/index.ts index 4382455..f790cc8 100644 --- a/src/cli/publish/index.ts +++ b/src/cli/publish/index.ts @@ -91,13 +91,13 @@ function displayBuildDetails(build: BuildStatusResponse): void { console.log(chalk.bold.cyan("\n✨ Next Steps")); console.log(chalk.gray("─".repeat(50))); - console.log( - chalk.white("Your functions are ready to be invoked!"), - ); + console.log(chalk.white("Your functions are ready to be invoked!")); build.builtFunctions.forEach((func) => { console.log(chalk.white(`\nInvoke using the CLI:`)); - console.log(chalk.gray(`\n bb invoke ${func.id} --params '{"hello": "world"}'`)); + console.log( + chalk.gray(`\n bb invoke ${func.id} --params '{"hello": "world"}'`), + ); console.log(chalk.white(`\nOr using cURL:`)); console.log(chalk.gray("\n curl --request POST \\")); From 86f135dbd1e6cada376700433d4407eb21d4c8b4 Mon Sep 17 00:00:00 2001 From: Adam McQuilkin <46639306+ajmcquilkin@users.noreply.github.com> Date: Mon, 9 Feb 2026 23:05:41 -0800 Subject: [PATCH 3/4] Match cURL --- src/cli/publish/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/publish/index.ts b/src/cli/publish/index.ts index f790cc8..a3ab9ba 100644 --- a/src/cli/publish/index.ts +++ b/src/cli/publish/index.ts @@ -96,7 +96,7 @@ function displayBuildDetails(build: BuildStatusResponse): void { build.builtFunctions.forEach((func) => { console.log(chalk.white(`\nInvoke using the CLI:`)); console.log( - chalk.gray(`\n bb invoke ${func.id} --params '{"hello": "world"}'`), + chalk.gray(`\n bb invoke ${func.id} --params '{}'`), ); console.log(chalk.white(`\nOr using cURL:`)); From ce83331a1eed8862a24d620d4aad29632af971fc Mon Sep 17 00:00:00 2001 From: Adam McQuilkin <46639306+ajmcquilkin@users.noreply.github.com> Date: Mon, 9 Feb 2026 23:06:34 -0800 Subject: [PATCH 4/4] Another lint --- src/cli/publish/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cli/publish/index.ts b/src/cli/publish/index.ts index a3ab9ba..c1c4264 100644 --- a/src/cli/publish/index.ts +++ b/src/cli/publish/index.ts @@ -95,9 +95,7 @@ function displayBuildDetails(build: BuildStatusResponse): void { build.builtFunctions.forEach((func) => { console.log(chalk.white(`\nInvoke using the CLI:`)); - console.log( - chalk.gray(`\n bb invoke ${func.id} --params '{}'`), - ); + console.log(chalk.gray(`\n bb invoke ${func.id} --params '{}'`)); console.log(chalk.white(`\nOr using cURL:`)); console.log(chalk.gray("\n curl --request POST \\"));