Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealAmazonKendra committed Jan 8, 2024
1 parent 51227ac commit 186ffef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l

----------------

** @jsii/check-node@1.92.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.92.0 | Apache-2.0
** @jsii/check-node@1.93.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.93.0 | Apache-2.0
jsii
Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Expand Down Expand Up @@ -471,7 +471,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE

----------------

** aws-sdk@2.1498.0 - https://www.npmjs.com/package/aws-sdk/v/2.1498.0 | Apache-2.0
** aws-sdk@2.1531.0 - https://www.npmjs.com/package/aws-sdk/v/2.1531.0 | Apache-2.0
AWS SDK for JavaScript
Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Expand All @@ -485,7 +485,7 @@ Amazon Web Services, Inc. (http://aws.amazon.com/).

----------------

** [email protected].3 - https://www.npmjs.com/package/basic-ftp/v/5.0.3 | MIT
** [email protected].4 - https://www.npmjs.com/package/basic-ftp/v/5.0.4 | MIT
Copyright (c) 2019 Patrick Juchli

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -668,7 +668,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

----------------

** cdk-from-cfn@0.84.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.84.0 | MIT OR Apache-2.0
** cdk-from-cfn@0.111.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.111.0 | MIT OR Apache-2.0

----------------

Expand Down
4 changes: 2 additions & 2 deletions tools/@aws-cdk/spec2cdk/lib/cfn2ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ export async function generateAll(
},
);

Object.keys(moduleMap).map(async (moduleName) => {
await Promise.all(Object.keys(moduleMap).map(async (moduleName) => {
// Add generated resources and files to module in map
moduleMap[moduleName].resources = generated.modules[moduleName].map((m) => m.resources).reduce(mergeObjects, {});
moduleMap[moduleName].files = generated.modules[moduleName].flatMap((m) => m.outputFiles);
});
}));

return moduleMap;
}
Expand Down

0 comments on commit 186ffef

Please sign in to comment.