@erda-ui/cli
Version:
Command line interface for rapid Erda UI development
21 lines (18 loc) • 1.06 kB
text/typescript
// Copyright (c) 2021 Terminus, Inc.
//
// This program is free software: you can use, redistribute, and/or modify
// it under the terms of the GNU Affero General Public License, version 3
// or later ("AGPL"), as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
import chalk from 'chalk';
export const { log } = console;
export const logInfo = (...msg: unknown[]) => log(chalk.blueBright('[erda-ui-cli]', ...msg));
export const logSuccess = (...msg: unknown[]) => log('✅', chalk.green('[erda-ui-cli]', ...msg));
export const logWarn = (...msg: unknown[]) => log('❗️', chalk.yellowBright('[erda-ui-cli]', ...msg));
export const logError = (...msg: unknown[]) => log('❌', chalk.redBright('[erda-ui-cli]', ...msg));