mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-04-11 19:28:28 +08:00
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
// Packages
|
|
import chalk from 'chalk';
|
|
|
|
// The equivalent of <code>, for embedding anything
|
|
// you may want to take a look at ./cmd.js
|
|
|
|
export default function code(cmd: string): string {
|
|
return `${chalk.gray('`')}${chalk.bold(cmd)}${chalk.gray('`')}`;
|
|
}
|