@oclif/multi-stage-output 0.8.4 → 0.8.6
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/lib/design.d.ts +1 -1
- package/lib/design.js +1 -1
- package/package.json +1 -1
package/lib/design.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export type Design = {
|
|
|
75
75
|
};
|
|
76
76
|
spinners?: {
|
|
77
77
|
/**
|
|
78
|
-
* Spinner to display for dynamic info blocks. Defaults to 'line' on Windows and '
|
|
78
|
+
* Spinner to display for dynamic info blocks. Defaults to 'line' on Windows and 'dots11' on other platforms
|
|
79
79
|
*/
|
|
80
80
|
info?: SpinnerName;
|
|
81
81
|
/**
|
package/lib/design.js
CHANGED
|
@@ -74,7 +74,7 @@ export function constructDesignParams(design) {
|
|
|
74
74
|
},
|
|
75
75
|
},
|
|
76
76
|
spinners: {
|
|
77
|
-
info: process.platform === 'win32' ? 'line' : '
|
|
77
|
+
info: process.platform === 'win32' ? 'line' : 'dots11',
|
|
78
78
|
stage: process.platform === 'win32' ? 'line' : 'dots2',
|
|
79
79
|
...design?.spinners,
|
|
80
80
|
},
|
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.8.
|
|
4
|
+
"version": "0.8.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/multi-stage-output/issues",
|
|
7
7
|
"dependencies": {
|