@storm-software/config-tools 1.148.4 → 1.149.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/config.cjs +8 -8
- package/bin/config.js +8 -8
- package/dist/logger/console.cjs +8 -9
- package/dist/logger/console.js +8 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/config.cjs
CHANGED
|
@@ -653,55 +653,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
653
653
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
654
654
|
return (message) => {
|
|
655
655
|
console.error(`
|
|
656
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
656
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
657
657
|
`);
|
|
658
658
|
};
|
|
659
659
|
}
|
|
660
660
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
661
661
|
return (message) => {
|
|
662
662
|
console.error(`
|
|
663
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
663
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
664
664
|
`);
|
|
665
665
|
};
|
|
666
666
|
}
|
|
667
667
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
668
668
|
return (message) => {
|
|
669
669
|
console.warn(`
|
|
670
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
670
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
671
671
|
`);
|
|
672
672
|
};
|
|
673
673
|
}
|
|
674
674
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
675
675
|
return (message) => {
|
|
676
676
|
console.info(`
|
|
677
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
677
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
678
678
|
`);
|
|
679
679
|
};
|
|
680
680
|
}
|
|
681
681
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
682
682
|
return (message) => {
|
|
683
683
|
console.info(`
|
|
684
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
684
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
685
685
|
`);
|
|
686
686
|
};
|
|
687
687
|
}
|
|
688
688
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
689
689
|
return (message) => {
|
|
690
690
|
console.debug(`
|
|
691
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
691
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
692
692
|
`);
|
|
693
693
|
};
|
|
694
694
|
}
|
|
695
695
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
696
696
|
return (message) => {
|
|
697
697
|
console.debug(`
|
|
698
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
698
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
699
699
|
`);
|
|
700
700
|
};
|
|
701
701
|
}
|
|
702
702
|
return (message) => {
|
|
703
703
|
console.log(`
|
|
704
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
704
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
705
705
|
`);
|
|
706
706
|
};
|
|
707
707
|
}, "getLogFn");
|
package/bin/config.js
CHANGED
|
@@ -621,55 +621,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
621
621
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
622
622
|
return (message) => {
|
|
623
623
|
console.error(`
|
|
624
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
624
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
625
625
|
`);
|
|
626
626
|
};
|
|
627
627
|
}
|
|
628
628
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
629
629
|
return (message) => {
|
|
630
630
|
console.error(`
|
|
631
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
631
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
632
632
|
`);
|
|
633
633
|
};
|
|
634
634
|
}
|
|
635
635
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
636
636
|
return (message) => {
|
|
637
637
|
console.warn(`
|
|
638
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
638
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
639
639
|
`);
|
|
640
640
|
};
|
|
641
641
|
}
|
|
642
642
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
643
643
|
return (message) => {
|
|
644
644
|
console.info(`
|
|
645
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
645
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
646
646
|
`);
|
|
647
647
|
};
|
|
648
648
|
}
|
|
649
649
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
650
650
|
return (message) => {
|
|
651
651
|
console.info(`
|
|
652
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
652
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
653
653
|
`);
|
|
654
654
|
};
|
|
655
655
|
}
|
|
656
656
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
657
657
|
return (message) => {
|
|
658
658
|
console.debug(`
|
|
659
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
659
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
660
660
|
`);
|
|
661
661
|
};
|
|
662
662
|
}
|
|
663
663
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
664
664
|
return (message) => {
|
|
665
665
|
console.debug(`
|
|
666
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
666
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
667
667
|
`);
|
|
668
668
|
};
|
|
669
669
|
}
|
|
670
670
|
return (message) => {
|
|
671
671
|
console.log(`
|
|
672
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
672
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
673
673
|
`);
|
|
674
674
|
};
|
|
675
675
|
}, "getLogFn");
|
package/dist/logger/console.cjs
CHANGED
|
@@ -17,55 +17,55 @@ const getLogFn = /* @__PURE__ */ _chunkUSNT2KNTcjs.__name.call(void 0, (logLevel
|
|
|
17
17
|
if (typeof logLevel === "number" && _types.LogLevel.FATAL >= logLevel) {
|
|
18
18
|
return (message) => {
|
|
19
19
|
console.error(`
|
|
20
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.FATAL]} Fatal]`)}
|
|
20
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
21
21
|
`);
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
24
|
if (typeof logLevel === "number" && _types.LogLevel.ERROR >= logLevel) {
|
|
25
25
|
return (message) => {
|
|
26
26
|
console.error(`
|
|
27
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.ERROR]} Error]`)}
|
|
27
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
28
28
|
`);
|
|
29
29
|
};
|
|
30
30
|
}
|
|
31
31
|
if (typeof logLevel === "number" && _types.LogLevel.WARN >= logLevel) {
|
|
32
32
|
return (message) => {
|
|
33
33
|
console.warn(`
|
|
34
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.WARN]} Warn]`)}
|
|
34
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
35
35
|
`);
|
|
36
36
|
};
|
|
37
37
|
}
|
|
38
38
|
if (typeof logLevel === "number" && _types.LogLevel.SUCCESS >= logLevel) {
|
|
39
39
|
return (message) => {
|
|
40
40
|
console.info(`
|
|
41
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.SUCCESS]} Success]`)}
|
|
41
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
42
42
|
`);
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
if (typeof logLevel === "number" && _types.LogLevel.INFO >= logLevel) {
|
|
46
46
|
return (message) => {
|
|
47
47
|
console.info(`
|
|
48
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.INFO]} Info]`)}
|
|
48
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
49
49
|
`);
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
52
|
if (typeof logLevel === "number" && _types.LogLevel.DEBUG >= logLevel) {
|
|
53
53
|
return (message) => {
|
|
54
54
|
console.debug(`
|
|
55
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.DEBUG]} Debug]`)}
|
|
55
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
56
56
|
`);
|
|
57
57
|
};
|
|
58
58
|
}
|
|
59
59
|
if (typeof logLevel === "number" && _types.LogLevel.TRACE >= logLevel) {
|
|
60
60
|
return (message) => {
|
|
61
61
|
console.debug(`
|
|
62
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.TRACE]} Trace]`)}
|
|
62
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
63
63
|
`);
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
return (message) => {
|
|
67
67
|
console.log(`
|
|
68
|
-
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.ALL]} System]`)}
|
|
68
|
+
${_chalk.gray(_formattimestamp.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${_consoleicons.CONSOLE_ICONS[_types.LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
69
69
|
`);
|
|
70
70
|
};
|
|
71
71
|
}, "getLogFn");
|
|
@@ -83,7 +83,6 @@ const getStopwatch = /* @__PURE__ */ _chunkUSNT2KNTcjs.__name.call(void 0, (name
|
|
|
83
83
|
const end = process.hrtime(start);
|
|
84
84
|
console.info(`
|
|
85
85
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
86
|
-
|
|
87
86
|
`);
|
|
88
87
|
};
|
|
89
88
|
}, "getStopwatch");
|
package/dist/logger/console.js
CHANGED
|
@@ -17,55 +17,55 @@ const getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {},
|
|
|
17
17
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
18
18
|
return (message) => {
|
|
19
19
|
console.error(`
|
|
20
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
20
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
21
21
|
`);
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
24
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
25
25
|
return (message) => {
|
|
26
26
|
console.error(`
|
|
27
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
27
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
28
28
|
`);
|
|
29
29
|
};
|
|
30
30
|
}
|
|
31
31
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
32
32
|
return (message) => {
|
|
33
33
|
console.warn(`
|
|
34
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
34
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
35
35
|
`);
|
|
36
36
|
};
|
|
37
37
|
}
|
|
38
38
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
39
39
|
return (message) => {
|
|
40
40
|
console.info(`
|
|
41
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
41
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
42
42
|
`);
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
46
46
|
return (message) => {
|
|
47
47
|
console.info(`
|
|
48
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
48
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
49
49
|
`);
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
52
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
53
53
|
return (message) => {
|
|
54
54
|
console.debug(`
|
|
55
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
55
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
56
56
|
`);
|
|
57
57
|
};
|
|
58
58
|
}
|
|
59
59
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
60
60
|
return (message) => {
|
|
61
61
|
console.debug(`
|
|
62
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
62
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
63
63
|
`);
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
return (message) => {
|
|
67
67
|
console.log(`
|
|
68
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
68
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
69
69
|
`);
|
|
70
70
|
};
|
|
71
71
|
}, "getLogFn");
|
|
@@ -83,7 +83,6 @@ const getStopwatch = /* @__PURE__ */ __name((name) => {
|
|
|
83
83
|
const end = process.hrtime(start);
|
|
84
84
|
console.info(`
|
|
85
85
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
86
|
-
|
|
87
86
|
`);
|
|
88
87
|
};
|
|
89
88
|
}, "getStopwatch");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.149.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
6
6
|
"repository": {
|