@storm-software/linting-tools 1.132.76 → 1.132.78
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/bin/lint.cjs +5 -5
- package/bin/lint.js +5 -5
- package/package.json +2 -2
package/bin/lint.cjs
CHANGED
|
@@ -282856,12 +282856,12 @@ function isUnicodeSupported() {
|
|
|
282856
282856
|
var useIcon = (c, fallback2) => isUnicodeSupported() ? c : fallback2;
|
|
282857
282857
|
var CONSOLE_ICONS = {
|
|
282858
282858
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
282859
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
282859
|
+
[LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
|
|
282860
282860
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
282861
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
282861
|
+
[LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
|
|
282862
282862
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
282863
282863
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
282864
|
-
[LogLevelLabel.TRACE]: useIcon("\
|
|
282864
|
+
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
282865
282865
|
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
282866
282866
|
};
|
|
282867
282867
|
|
|
@@ -282980,7 +282980,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
282980
282980
|
return (message) => {
|
|
282981
282981
|
console.debug(
|
|
282982
282982
|
`
|
|
282983
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.
|
|
282983
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
282984
282984
|
`
|
|
282985
282985
|
);
|
|
282986
282986
|
};
|
|
@@ -282989,7 +282989,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, ()
|
|
|
282989
282989
|
return (message) => {
|
|
282990
282990
|
console.debug(
|
|
282991
282991
|
`
|
|
282992
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
282992
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
282993
282993
|
`
|
|
282994
282994
|
);
|
|
282995
282995
|
};
|
package/bin/lint.js
CHANGED
|
@@ -283455,12 +283455,12 @@ function isUnicodeSupported() {
|
|
|
283455
283455
|
var useIcon = (c, fallback2) => isUnicodeSupported() ? c : fallback2;
|
|
283456
283456
|
var CONSOLE_ICONS = {
|
|
283457
283457
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
283458
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
283458
|
+
[LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
|
|
283459
283459
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
283460
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
283460
|
+
[LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
|
|
283461
283461
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
283462
283462
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
283463
|
-
[LogLevelLabel.TRACE]: useIcon("\
|
|
283463
|
+
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
283464
283464
|
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
283465
283465
|
};
|
|
283466
283466
|
|
|
@@ -283579,7 +283579,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
283579
283579
|
return (message) => {
|
|
283580
283580
|
console.debug(
|
|
283581
283581
|
`
|
|
283582
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.
|
|
283582
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
283583
283583
|
`
|
|
283584
283584
|
);
|
|
283585
283585
|
};
|
|
@@ -283588,7 +283588,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
|
|
|
283588
283588
|
return (message) => {
|
|
283589
283589
|
console.debug(
|
|
283590
283590
|
`
|
|
283591
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
283591
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
283592
283592
|
`
|
|
283593
283593
|
);
|
|
283594
283594
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.78",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -149,5 +149,5 @@
|
|
|
149
149
|
"vfile-reporter": "8.1.1"
|
|
150
150
|
},
|
|
151
151
|
"publishConfig": { "access": "public" },
|
|
152
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "3053ec1a8f1bd29d0303c98c1fad84c2613b7b97"
|
|
153
153
|
}
|