-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update CloudFormation resources v2.18.0 (#1407)
New resource types: * AWS::AmazonMQ::ConfigurationAssociation * AWS::IoTAnalytics::Channel * AWS::IoTAnalytics::Dataset * AWS::IoTAnalytics::Datastore * AWS::IoTAnalytics::Pipeline Misc: * Patch ServiceDiscovery resource "Map" primitive type to "Json" (see #1409) * Relax namespaces test so we don't have to update it every time we update the spec * Rewrite the create-missing-libraries script in typescript so it's a bit more robust and mangles names nicely.
- Loading branch information
Elad Ben-Israel
authored
Dec 20, 2018
1 parent
62e3244
commit 0f80b56
Showing
18 changed files
with
1,741 additions
and
329 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*.d.ts | ||
*.generated.ts | ||
*.js | ||
*.js.map | ||
*.snk | ||
.jsii | ||
.LAST_BUILD | ||
.LAST_PACKAGE | ||
.nycrc | ||
.nyc_output | ||
coverage | ||
dist | ||
tsconfig.json | ||
tslint.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# The basics | ||
*.ts | ||
*.tgz | ||
*.snk | ||
!*.d.ts | ||
!*.js | ||
|
||
# Coverage | ||
coverage | ||
.nyc_output | ||
.nycrc | ||
|
||
# Build gear | ||
dist | ||
.LAST_BUILD | ||
.LAST_PACKAGE | ||
.jsii |
Oops, something went wrong.