projecthor
Version:
Save, manage, and run project setup commands automatically from the CLI.
11 lines (10 loc) • 350 B
JavaScript
import chalk from "chalk";
export function printWarning(message) {
console.log(chalk.yellow(message));
}
export function printError(message) {
console.log(chalk.red.bold(message));
}
export function alreadyExistingProjectError(projectName) {
printError(`Project '${projectName}' already exist. Can't create another project instance.`);
}