@reliverse/relinka 1.2.5 → 1.2.7
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.
|
@@ -219,7 +219,7 @@ ${borderWithSpace}${formattedHint}`;
|
|
|
219
219
|
}
|
|
220
220
|
if (opts.placeholder && opts.type === "M_GENERAL") {
|
|
221
221
|
formattedTitle += `
|
|
222
|
-
${borderWithSpace}${colorMap[opts.hintPlaceholderColor ?? "
|
|
222
|
+
${borderWithSpace}${colorMap[opts.hintPlaceholderColor ?? "blue"](opts.placeholder)}`;
|
|
223
223
|
}
|
|
224
224
|
if (opts.errorMessage) {
|
|
225
225
|
const formattedError = applyStyles(
|
|
@@ -279,7 +279,7 @@ ${borderWithSpace}` : "",
|
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
281
|
if (opts.type === "M_END" && opts.border && index === 0) {
|
|
282
|
-
return !opts.title ?
|
|
282
|
+
return !opts.title ? "" : `${bar({ borderColor: opts.borderColor })} ${line}`;
|
|
283
283
|
}
|
|
284
284
|
if (!line.trim() || line.includes(symbols.middle)) {
|
|
285
285
|
return line;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reliverse/relinka",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"author": "blefnk",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "@reliverse/relinka is a powerful logger for your terminal.",
|
|
@@ -42,9 +42,17 @@
|
|
|
42
42
|
"url": "https://github.com/reliverse/relinka/issues",
|
|
43
43
|
"email": "blefnk@gmail.com"
|
|
44
44
|
},
|
|
45
|
-
"files": [
|
|
45
|
+
"files": [
|
|
46
|
+
"package.json",
|
|
47
|
+
"README.md",
|
|
48
|
+
"LICENSE.md",
|
|
49
|
+
"dist-npm"
|
|
50
|
+
],
|
|
46
51
|
"homepage": "https://github.com/reliverse/relinka",
|
|
47
|
-
"keywords": [
|
|
52
|
+
"keywords": [
|
|
53
|
+
"cli",
|
|
54
|
+
"reliverse"
|
|
55
|
+
],
|
|
48
56
|
"license": "MIT",
|
|
49
57
|
"dependencies": {
|
|
50
58
|
"@figliolia/chalk-animation": "^1.0.4",
|
|
@@ -86,13 +94,13 @@
|
|
|
86
94
|
"wrap-ansi": "^9.0.0"
|
|
87
95
|
},
|
|
88
96
|
"devDependencies": {
|
|
89
|
-
"@arethetypeswrong/cli": "^0.17.
|
|
97
|
+
"@arethetypeswrong/cli": "^0.17.3",
|
|
90
98
|
"@biomejs/biome": "1.9.4",
|
|
91
99
|
"@cspell/dict-npm": "^5.1.22",
|
|
92
100
|
"@eslint/js": "^9.18.0",
|
|
93
101
|
"@eslint/json": "^0.9.0",
|
|
94
102
|
"@eslint/markdown": "^6.2.1",
|
|
95
|
-
"@stylistic/eslint-plugin": "^2.
|
|
103
|
+
"@stylistic/eslint-plugin": "^2.13.0",
|
|
96
104
|
"@types/ansi-diff-stream": "^1.2.3",
|
|
97
105
|
"@types/bun": "^1.1.16",
|
|
98
106
|
"@types/chalk-animation": "^1.6.3",
|
|
@@ -100,7 +108,7 @@
|
|
|
100
108
|
"@types/figlet": "^1.7.0",
|
|
101
109
|
"@types/fs-extra": "^11.0.4",
|
|
102
110
|
"@types/mute-stream": "^0.0.4",
|
|
103
|
-
"@types/node": "^22.10.
|
|
111
|
+
"@types/node": "^22.10.6",
|
|
104
112
|
"@types/sentencer": "^0.2.3",
|
|
105
113
|
"@types/signal-exit": "^3.0.4",
|
|
106
114
|
"@types/strip-comments": "^2.0.4",
|
|
@@ -118,8 +126,8 @@
|
|
|
118
126
|
"strip-comments": "^2.0.1",
|
|
119
127
|
"tsx": "^4.19.2",
|
|
120
128
|
"typescript": "^5.7.3",
|
|
121
|
-
"typescript-eslint": "^8.
|
|
122
|
-
"unbuild": "^3.
|
|
129
|
+
"typescript-eslint": "^8.20.0",
|
|
130
|
+
"unbuild": "^3.3.1",
|
|
123
131
|
"vitest": "^2.1.8"
|
|
124
132
|
}
|
|
125
|
-
}
|
|
133
|
+
}
|