Skip to content

Commit ba39261

Browse files
committed
minor output tweak
1 parent a92bf26 commit ba39261

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@
360360
results.push(formatted.join('\n'));
361361
}
362362
else {
363-
// Multi-column output for terminal display
364-
results.push(formatted.join(' '));
363+
// Multi-column output for terminal display with wider spacing
364+
results.push(formatted.join(' '));
365365
}
366366
}
367367
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unix-shell-js",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Browser-based Unix/Linux command emulator with vi editor support",
55
"main": "./dist/cjs/index.js",
66
"module": "./dist/esm/index.js",

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,8 +520,8 @@ export class UnixShell {
520520
if (this._isPiped) {
521521
results.push(formatted.join('\n'));
522522
} else {
523-
// Multi-column output for terminal display
524-
results.push(formatted.join(' '));
523+
// Multi-column output for terminal display with wider spacing
524+
results.push(formatted.join(' '));
525525
}
526526
}
527527
}

0 commit comments

Comments
 (0)