MCPcopy
hub / github.com/wasp-lang/wasp / waspSays

Function waspSays

waspc/data/packages/deploy/src/common/terminal.ts:3–9  ·  view source on GitHub ↗
(str: string)

Source from the content-addressed store, hash-verified

1import { chalk } from "zx";
2
3export function waspSays(str: string): void {
4 const formattedStr = str
5 .split("\n")
6 .map((line) => `🚀 ${line}`)
7 .join("\n");
8 console.log(chalk.yellow(formattedStr));
9}
10
11export function waspInfo(str: string): void {
12 const formattedStr = str

Callers 15

index.tsFile · 0.85
deployFunction · 0.85
deployServerFunction · 0.85
deployClientFunction · 0.85
launchFunction · 0.85
createDbFunction · 0.85
setupFunction · 0.85
setupServerFunction · 0.85
setupClientFunction · 0.85
cmdFunction · 0.85
deployClientFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected