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 6b0f13e commit 5624941Copy full SHA for 5624941
packages/wrangler/src/cloudchamber/common.ts
@@ -177,8 +177,7 @@ export async function promiseSpinner<T>(
177
message: "Loading",
178
}
179
): Promise<T> {
180
- const interactive = !json && !isNonInteractiveOrCI();
181
- if (!interactive) {
+ if (json || isNonInteractiveOrCI()) {
182
return promise;
183
184
const { start, stop } = spinner();
0 commit comments