source: frontend/node_modules/tailwindcss/lib/util/log.js@ cdcff72

Last change on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.6 KB
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", {
3 value: true
4});
5function _export(target, all) {
6 for(var name in all)Object.defineProperty(target, name, {
7 enumerable: true,
8 get: all[name]
9 });
10}
11_export(exports, {
12 dim: function() {
13 return dim;
14 },
15 default: function() {
16 return _default;
17 }
18});
19const _picocolors = /*#__PURE__*/ _interop_require_default(require("picocolors"));
20function _interop_require_default(obj) {
21 return obj && obj.__esModule ? obj : {
22 default: obj
23 };
24}
25let alreadyShown = new Set();
26function log(type, messages, key) {
27 if (typeof process !== "undefined" && process.env.JEST_WORKER_ID) return;
28 if (key && alreadyShown.has(key)) return;
29 if (key) alreadyShown.add(key);
30 console.warn("");
31 messages.forEach((message)=>console.warn(type, "-", message));
32}
33function dim(input) {
34 return _picocolors.default.dim(input);
35}
36const _default = {
37 info (key, messages) {
38 log(_picocolors.default.bold(_picocolors.default.cyan("info")), ...Array.isArray(key) ? [
39 key
40 ] : [
41 messages,
42 key
43 ]);
44 },
45 warn (key, messages) {
46 log(_picocolors.default.bold(_picocolors.default.yellow("warn")), ...Array.isArray(key) ? [
47 key
48 ] : [
49 messages,
50 key
51 ]);
52 },
53 risk (key, messages) {
54 log(_picocolors.default.bold(_picocolors.default.magenta("risk")), ...Array.isArray(key) ? [
55 key
56 ] : [
57 messages,
58 key
59 ]);
60 }
61};
Note: See TracBrowser for help on using the repository browser.