@oclif/multi-stage-output 0.1.3 → 0.1.4

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.
@@ -47,7 +47,7 @@ function Infos({ error, keyValuePairs, stage, }) {
47
47
  }));
48
48
  }
49
49
  export function Stages({ error, hasElapsedTime = true, hasStageTime = true, postStagesBlock, preStagesBlock, stageSpecificBlock, stageTracker, timerUnit = 'ms', title, }) {
50
- return (React.createElement(Box, { flexDirection: "column", paddingTop: 1 },
50
+ return (React.createElement(Box, { flexDirection: "column", paddingTop: 1, paddingBottom: 1 },
51
51
  React.createElement(Divider, { title: title }),
52
52
  preStagesBlock && preStagesBlock.length > 0 && (React.createElement(Box, { flexDirection: "column", marginLeft: 1, paddingTop: 1 },
53
53
  React.createElement(Infos, { error: error, keyValuePairs: preStagesBlock }))),
@@ -104,7 +104,7 @@ class CIMultiStageOutput {
104
104
  this.data = data;
105
105
  this.lastUpdateTime = Date.now();
106
106
  ux.stdout(`───── ${this.title} ─────`);
107
- ux.stdout('Steps:');
107
+ ux.stdout('Stages:');
108
108
  for (const stage of this.stages) {
109
109
  ux.stdout(`${this.stages.indexOf(stage) + 1}. ${capitalCase(stage)}`);
110
110
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/multi-stage-output",
3
3
  "description": "Terminal output for oclif commands with multiple stages",
4
- "version": "0.1.3",
4
+ "version": "0.1.4",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/multi-stage-output/issues",
7
7
  "dependencies": {