File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- import { intro , log , outro , taskLog } from "@clack/prompts" ;
1+ import { intro , log , outro } from "@clack/prompts" ;
22import { getBranch , prepareDeploymentError , tryCatch } from "@trigger.dev/core/v3" ;
33import {
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" : {
Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments