fes.js/scripts/randomColor.mjs
qlin fec7a8f1ae
feat: 升级 vite5 (#222)
* feat: 升级 vite5

* fix: 优化 webpack publicPath

* fix: 优化文档

* chore: remove log

* chore: remove 无效代码
2023-12-14 14:28:02 +08:00

36 lines
630 B
JavaScript

/* eslint import/no-extraneous-dependencies: 0 */
import chalk from 'chalk';
const colors = [
'red',
'green',
'yellow',
'blue',
'magenta',
'cyan',
'gray',
'redBright',
'greenBright',
'yellowBright',
'blueBright',
'magentaBright',
'cyanBright',
];
let index = 0;
const cache = {};
export default 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];
}