Skip to content

Commit ba49783

Browse files
committed
Remove custom spacing, also not supported n old ver
1 parent ec518ec commit ba49783

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/cli-v3/src/commands/deploy.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { intro, log, outro, taskLog } from "@clack/prompts";
1+
import { intro, log, outro } from "@clack/prompts";
22
import { getBranch, prepareDeploymentError, tryCatch } from "@trigger.dev/core/v3";
33
import {
44
InitializeDeploymentRequestBody,
@@ -1092,7 +1092,7 @@ async function handleNativeBuildServerDeploy({
10921092
case "log": {
10931093
if (record.seq_num === 0) {
10941094
$queuedSpinner.stop("Build started");
1095-
log.message("", { symbol: undefined, spacing: 0 });
1095+
log.message("", { symbol: undefined });
10961096
queuedSpinnerStopped = true;
10971097
}
10981098

@@ -1116,7 +1116,7 @@ async function handleNativeBuildServerDeploy({
11161116
? chalkGrey(message)
11171117
: message;
11181118

1119-
log.message(`${formattedTimestamp} ${formattedMessage}`, { symbol: undefined, spacing: 0 });
1119+
log.message(`${formattedTimestamp} ${formattedMessage}`, { symbol: undefined });
11201120
break;
11211121
}
11221122
case "finalized": {

packages/cli-v3/src/utilities/windows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,5 @@ const plainSpinner = () => ({
112112

113113
// This will become unecessary with the next clack release, the bug was fixed here:
114114
// https://github.com/natemoo-re/clack/pull/182
115-
export const spinner = (options?: { plain?: boolean } = {}) =>
115+
export const spinner = (options: { plain?: boolean } = { plain: false }) =>
116116
options.plain ? plainSpinner() : isWindows ? ballmerSpinner() : wrappedClackSpinner();

0 commit comments

Comments
 (0)