@storm-software/eslint 0.169.77 → 0.169.79
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/dist/preset.js +5 -5
- package/package.json +3 -3
package/dist/preset.js
CHANGED
|
@@ -2097,12 +2097,12 @@ function isUnicodeSupported() {
|
|
|
2097
2097
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
2098
2098
|
var CONSOLE_ICONS = {
|
|
2099
2099
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
2100
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
2100
|
+
[LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
|
|
2101
2101
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
2102
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
2102
|
+
[LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
|
|
2103
2103
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
2104
2104
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
2105
|
-
[LogLevelLabel.TRACE]: useIcon("\
|
|
2105
|
+
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
2106
2106
|
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
2107
2107
|
};
|
|
2108
2108
|
|
|
@@ -2221,7 +2221,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
2221
2221
|
return (message) => {
|
|
2222
2222
|
console.debug(
|
|
2223
2223
|
`
|
|
2224
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.
|
|
2224
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
2225
2225
|
`
|
|
2226
2226
|
);
|
|
2227
2227
|
};
|
|
@@ -2230,7 +2230,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
|
|
|
2230
2230
|
return (message) => {
|
|
2231
2231
|
console.debug(
|
|
2232
2232
|
`
|
|
2233
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
2233
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
2234
2234
|
`
|
|
2235
2235
|
);
|
|
2236
2236
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.169.
|
|
3
|
+
"version": "0.169.79",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"@eslint/markdown": "^6.6.0",
|
|
166
166
|
"@nx/eslint-plugin": "^22.3.3",
|
|
167
167
|
"@storm-software/config": "^1.135.0",
|
|
168
|
-
"@storm-software/config-tools": "^1.188.
|
|
168
|
+
"@storm-software/config-tools": "^1.188.78",
|
|
169
169
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
170
170
|
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
171
171
|
"@typescript-eslint/parser": "^8.50.1",
|
|
@@ -241,5 +241,5 @@
|
|
|
241
241
|
},
|
|
242
242
|
"publishConfig": { "access": "public" },
|
|
243
243
|
"sideEffects": false,
|
|
244
|
-
"gitHead": "
|
|
244
|
+
"gitHead": "3053ec1a8f1bd29d0303c98c1fad84c2613b7b97"
|
|
245
245
|
}
|