@@ -158,7 +158,7 @@ export async function deployToAllRegions(
158158
159159 if ( deployments . length === 0 ) {
160160 logger . info ( "Using traditional pattern-based deployment" ) ;
161- const stackPatterns = args . stackPattern . split ( "," ) . map ( s => s . trim ( ) ) ;
161+ const stackPatterns = args . stackPattern . split ( "," ) . map ( ( s ) => s . trim ( ) ) ;
162162 for ( const region of regions ) {
163163 for ( const stackName of stackPatterns ) {
164164 deployments . push ( {
@@ -190,8 +190,12 @@ export async function deployToAllRegions(
190190 try {
191191 console . log ( ` [${ profile } ] Synthesizing cloud assembly...` ) ;
192192
193- const profileDeployments = deployments . filter ( d => d . profile === profile ) ;
194- const stacksForProfile = [ ...new Set ( profileDeployments . map ( d => d . constructId ) ) ] ;
193+ const profileDeployments = deployments . filter (
194+ ( d ) => d . profile === profile ,
195+ ) ;
196+ const stacksForProfile = [
197+ ...new Set ( profileDeployments . map ( ( d ) => d . constructId ) ) ,
198+ ] ;
195199
196200 const cloudAssembly = new CloudAssemblyManager ( ) ;
197201 const assemblyPath = await cloudAssembly . synthesize ( {
@@ -229,7 +233,9 @@ export async function deployToAllRegions(
229233 logger . phase ( "Synthesis" , "" ) ;
230234 console . log ( ` [${ args . profile } ] Synthesizing cloud assembly...` ) ;
231235
232- const stacksForProfile = [ ...new Set ( deployments . map ( d => d . constructId ) ) ] ;
236+ const stacksForProfile = [
237+ ...new Set ( deployments . map ( ( d ) => d . constructId ) ) ,
238+ ] ;
233239
234240 const cloudAssembly = new CloudAssemblyManager ( ) ;
235241 const assemblyPath = await cloudAssembly . synthesize ( {
0 commit comments