@ekkos/cli 1.2.12 → 1.2.13
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/commands/run.js +1 -4
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -1137,10 +1137,7 @@ async function run(options) {
|
|
|
1137
1137
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1138
1138
|
// STARTUP BANNER WITH COLOR PULSE ANIMATION
|
|
1139
1139
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1140
|
-
|
|
1141
|
-
// cursor repositioning (\x1B[6A, \b, etc.), leaving the terminal in a dirty state that
|
|
1142
|
-
// causes Ink rendering artifacts in Claude Code. Use a clean static banner instead.
|
|
1143
|
-
const skipFancyIntro = isWindows || process.env.EKKOS_REMOTE_SESSION === '1' || process.env.EKKOS_NO_SPLASH === '1';
|
|
1140
|
+
const skipFancyIntro = process.env.EKKOS_REMOTE_SESSION === '1' || process.env.EKKOS_NO_SPLASH === '1';
|
|
1144
1141
|
if (!skipFancyIntro) {
|
|
1145
1142
|
const logoLines = [
|
|
1146
1143
|
' ▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄ ▄▄',
|