We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66efe0 commit 09e596cCopy full SHA for 09e596c
.changeset/three-ideas-refuse.md
@@ -0,0 +1,5 @@
1
+---
2
+"@clack/prompts": patch
3
4
+
5
+refactor(progress): remove unnecessary return statement in start function
packages/prompts/src/progress-bar.ts
@@ -53,7 +53,7 @@ export function progress({
53
54
const start = (msg = '') => {
55
previousMessage = msg;
56
- return spin.start(drawProgress('initial', msg));
+ spin.start(drawProgress('initial', msg));
57
};
58
const advance = (step = 1, msg?: string): void => {
59
value = Math.min(max, step + value);
0 commit comments