Skip to content

Commit

Permalink
chore: fix build by fixing route53 definitions (#2788)
Browse files Browse the repository at this point in the history
Work around aws/jsii#525.
  • Loading branch information
rix0rrr authored Jun 7, 2019
1 parent 2e0848c commit 5c90256
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
5 changes: 4 additions & 1 deletion packages/@aws-cdk/aws-mediastore/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ dist
.LAST_PACKAGE
.jsii

*.tsbuildinfo
*.tsbuildinfo

# Include .jsii
!.jsii
5 changes: 4 additions & 1 deletion packages/@aws-cdk/aws-pinpointemail/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ dist
.LAST_PACKAGE
.jsii

*.tsbuildinfo
*.tsbuildinfo

# Include .jsii
!.jsii
7 changes: 6 additions & 1 deletion packages/@aws-cdk/aws-route53/lib/record-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,12 @@ export class ARecord extends RecordSet {
/**
* Construction properties for a AaaaRecord.
*/
export interface AaaaRecordProps extends RecordSetOptions, ARecordProps {}
export interface AaaaRecordProps extends RecordSetOptions {
/**
* The target.
*/
readonly target: AddressRecordTarget;
}

/**
* A DNS AAAA record
Expand Down
5 changes: 4 additions & 1 deletion packages/@aws-cdk/aws-transfer/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ dist
.LAST_PACKAGE
.jsii

*.tsbuildinfo
*.tsbuildinfo

# Include .jsii
!.jsii

0 comments on commit 5c90256

Please sign in to comment.