* Renders the Serverless Compose logo to the console.
()
| 991 | * Renders the Serverless Compose logo to the console. |
| 992 | */ |
| 993 | logoCompose() { |
| 994 | let content = renderer.style.bold( |
| 995 | `${renderer.style.title('Serverless ')}${renderer.colors.red( |
| 996 | 'ϟ', |
| 997 | )}${renderer.style.title(' Compose')} |
| 998 | `, |
| 999 | ) |
| 1000 | |
| 1001 | const disableNewLine = renderer.isInteractive ? true : false |
| 1002 | |
| 1003 | writeStdErr({ |
| 1004 | level: 'compose', |
| 1005 | type: 'compose', |
| 1006 | messageTokens: [content], |
| 1007 | prefix: this.prefix, |
| 1008 | prefixColor: this.prefixColor, |
| 1009 | disableNewLine, |
| 1010 | }) |
| 1011 | } |
| 1012 | |
| 1013 | /** |
| 1014 | * Renders the Serverless Compose logo to the console. |
no test coverage detected