ikie-cli 0.1.38 → 0.1.39
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/theme.js +1 -1
- package/package.json +1 -1
package/dist/theme.js
CHANGED
|
@@ -281,7 +281,7 @@ export function contextRing(pct) {
|
|
|
281
281
|
}
|
|
282
282
|
const IS_WIN = process.platform === 'win32';
|
|
283
283
|
/** True when the terminal supports VT100 escape sequences (cursor save/restore, etc). */
|
|
284
|
-
export const supportsVT = !IS_WIN
|
|
284
|
+
export const supportsVT = !IS_WIN;
|
|
285
285
|
const CH = IS_WIN
|
|
286
286
|
? { tl: '+-', prompt: '-> ', cont: '| ', arrow: '>', dot: 'o' }
|
|
287
287
|
: { tl: '╭─', prompt: '╰─❯', cont: '│ ', arrow: '❯', dot: '●' };
|