@storm-software/linting-tools 1.132.77 → 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 +3 -3
- package/bin/lint.js +3 -3
- 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
|
|
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
|
|
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
|
}
|