You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.dim = dim; |
|
exports.default = void 0; |
|
var _picocolors = _interopRequireDefault(require("picocolors")); |
|
function _interopRequireDefault(obj) { |
|
return obj && obj.__esModule ? obj : { |
|
default: obj |
|
}; |
|
} |
|
let alreadyShown = new Set(); |
|
function log(type, messages, key) { |
|
if (typeof process !== "undefined" && process.env.JEST_WORKER_ID) return; |
|
if (key && alreadyShown.has(key)) return; |
|
if (key) alreadyShown.add(key); |
|
console.warn(""); |
|
messages.forEach((message)=>console.warn(type, "-", message)); |
|
} |
|
function dim(input) { |
|
return _picocolors.default.dim(input); |
|
} |
|
var _default = { |
|
info (key, messages) { |
|
log(_picocolors.default.bold(_picocolors.default.cyan("info")), ...Array.isArray(key) ? [ |
|
key |
|
] : [ |
|
messages, |
|
key |
|
]); |
|
}, |
|
warn (key, messages) { |
|
log(_picocolors.default.bold(_picocolors.default.yellow("warn")), ...Array.isArray(key) ? [ |
|
key |
|
] : [ |
|
messages, |
|
key |
|
]); |
|
}, |
|
risk (key, messages) { |
|
log(_picocolors.default.bold(_picocolors.default.magenta("risk")), ...Array.isArray(key) ? [ |
|
key |
|
] : [ |
|
messages, |
|
key |
|
]); |
|
} |
|
}; |
|
exports.default = _default;
|
|
|