mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
36 lines
652 B
JavaScript
36 lines
652 B
JavaScript
/* eslint import/no-extraneous-dependencies: 0 */
|
|
const chalk = require('chalk');
|
|
|
|
const colors = [
|
|
'red',
|
|
'green',
|
|
'yellow',
|
|
'blue',
|
|
'magenta',
|
|
'cyan',
|
|
'gray',
|
|
'redBright',
|
|
'greenBright',
|
|
'yellowBright',
|
|
'blueBright',
|
|
'magentaBright',
|
|
'cyanBright'
|
|
];
|
|
|
|
let index = 0;
|
|
const cache = {};
|
|
|
|
module.exports = function (pkg) {
|
|
if (!cache[pkg]) {
|
|
const color = colors[index];
|
|
const str = chalk[color].bold(pkg);
|
|
cache[pkg] = str;
|
|
if (index === colors.length - 1) {
|
|
index = 0;
|
|
} else {
|
|
index += 1;
|
|
}
|
|
}
|
|
return cache[pkg];
|
|
};
|