Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-17 23:35:09 +01:00
parent 89355bab8b
commit e8161935b1
15 changed files with 477 additions and 5 deletions

22
dist/logger.js vendored Normal file
View File

@@ -0,0 +1,22 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.logError = logError;
exports.logWarning = logWarning;
exports.logSuccess = logSuccess;
exports.logInfo = logInfo;
const chalk_1 = __importDefault(require("chalk"));
function logError(...args) {
console.error(chalk_1.default.red("ERROR:"), ...args);
}
function logWarning(...args) {
console.warn(chalk_1.default.yellow("WARNING:"), ...args);
}
function logSuccess(...args) {
console.info(chalk_1.default.green("SUCCESS:"), ...args);
}
function logInfo(...args) {
console.info(chalk_1.default.cyan("INFO:"), ...args);
}