Skip to content

Commit

Permalink
fix: reordered spread operator in MultiDeployCodePipelineProps
Browse files Browse the repository at this point in the history
  • Loading branch information
OrdonioSa committed Sep 21, 2022
1 parent b927f08 commit 5291f06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name|Description
----|-----------
[AdditionalTrigger](#tts-cdk-build-pipelines-additionaltrigger)|Convenience class to create additional trigger {CodePipelineMixin}s for executing a CodePipeline if certain events occur other than a code change.
[AdditionalTrigger](#tts-cdk-build-pipelines-additionaltrigger)|Convenience class to create additional trigger {CodePipelineMixin}s for executing a CodePipeline if certain events occur other than a code change.
[BuildProjectFeature](#tts-cdk-build-pipelines-buildprojectfeature)|*No description*
[BuildSpecPipeline](#tts-cdk-build-pipelines-buildspecpipeline)|*No description*
[CleanupStacksMixin](#tts-cdk-build-pipelines-cleanupstacksmixin)|*No description*
Expand Down Expand Up @@ -41,7 +41,7 @@ Name|Description

## class AdditionalTrigger <a id="tts-cdk-build-pipelines-additionaltrigger"></a>

Convenience class to create additional trigger {CodePipelineMixin}s for executing a CodePipeline if certain events occur other than a code change.
Convenience class to create additional trigger {CodePipelineMixin}s for executing a CodePipeline if certain events occur other than a code change.


### Initializer
Expand Down
2 changes: 1 addition & 1 deletion src/pipelines/multiDeploy/MultiDeployCodePipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export class MultiDeployCodePipeline extends CodePipeline {
constructor(scope: Construct, id: string, props: MultiDeployCodePipelineProps) {

const mdcProps = {
...props,
crossAccountKeys: true,
reuseCrossRegionSupportStacks: true,
...props,
};

super(scope, id, mdcProps);
Expand Down

0 comments on commit 5291f06

Please sign in to comment.