@ionic/cli
Version:
A tool for creating and developing Ionic Framework mobile apps.
12 lines (11 loc) • 894 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WARN = exports.title = exports.ancillary = exports.failure = exports.success = exports.input = exports.weak = exports.strong = exports.COLORS = void 0;
const tslib_1 = require("tslib");
const cli_framework_1 = require("@ionic/cli-framework");
const chalk_1 = tslib_1.__importDefault(require("chalk"));
const HELP_COLORS = {
title: chalk_1.default.bold,
};
exports.COLORS = { ...cli_framework_1.DEFAULT_COLORS, help: { ...cli_framework_1.DEFAULT_COLORS.help, ...HELP_COLORS } };
exports.strong = exports.COLORS.strong, exports.weak = exports.COLORS.weak, exports.input = exports.COLORS.input, exports.success = exports.COLORS.success, exports.failure = exports.COLORS.failure, exports.ancillary = exports.COLORS.ancillary, exports.title = exports.COLORS.help.title, exports.WARN = exports.COLORS.log.WARN;
;