mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
15 lines
461 B
TypeScript
15 lines
461 B
TypeScript
import chalk from "chalk";
|
|
|
|
const emittedDeprecationWarnings = new Set<string>();
|
|
|
|
export function warnDeprecation(message: string): void {
|
|
if (emittedDeprecationWarnings.has(message)) return;
|
|
emittedDeprecationWarnings.add(message);
|
|
console.warn(chalk.yellow(`Deprecation warning: ${message}`));
|
|
}
|
|
|
|
/** Clear deprecation warning state. Exported for tests. */
|
|
export function clearDeprecationWarningsForTests(): void {
|
|
emittedDeprecationWarnings.clear();
|
|
}
|