antler
Version:
Directory structure linter
15 lines • 549 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AntlerWarning = void 0;
const chalk_1 = __importDefault(require("chalk"));
class AntlerWarning extends Error {
constructor(message) {
super(message);
this.message = `${chalk_1.default.yellow('WARNING')} ${message}`;
}
}
exports.AntlerWarning = AntlerWarning;
//# sourceMappingURL=antler-warning.js.map