start-command 0.20.1 → 0.20.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # start-command
2
2
 
3
+ ## 0.20.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 4749051: fix: Remove empty line after virtual command to maintain visual continuity
8
+ - Fixed visual continuity break in docker pull output
9
+ - Removed empty line between timeline marker (`│`) and virtual command line (`$ docker pull`)
10
+ - Output now flows continuously from timeline marker to command to output
11
+ - Applies to all virtual command blocks (currently docker pull operations)
12
+
13
+ Fixes #73
14
+
3
15
  ## 0.20.1
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-command",
3
- "version": "0.20.1",
3
+ "version": "0.20.2",
4
4
  "description": "Gamification of coding, execute any command with ability to auto-report issues on GitHub",
5
5
  "main": "src/bin/cli.js",
6
6
  "exports": {
@@ -117,7 +117,6 @@ function dockerPullImage(image) {
117
117
 
118
118
  // Print the virtual command line
119
119
  console.log(createVirtualCommandBlock(`docker pull ${image}`));
120
- console.log();
121
120
 
122
121
  let output = '';
123
122
  let success = false;