Skip to content

Commit

Permalink
Merge pull request #2 from eduardomourar/feature/rpdk-typescript
Browse files Browse the repository at this point in the history
Feature/rpdk typescript
  • Loading branch information
eduardomourar authored Apr 14, 2020
2 parents 31566de + 9600fe0 commit 19f5630
Show file tree
Hide file tree
Showing 32 changed files with 7,855 additions and 151 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# DEVELOPER PREVIEW (COMMUNITY DRIVEN)

We're excited to share our progress with adding new languages to the CloudFormation CLI! This plugin is an early preview prepared by the community, and not ready for production use.
We're excited to share our progress with adding new languages to the CloudFormation CLI!
> This plugin is an early preview prepared by the community, and not ready for production use.
## AWS CloudFormation Resource Provider TypeScript Plugin

Expand All @@ -16,6 +17,7 @@ If you are using this package to build resource providers for CloudFormation, in
**Prerequisites**

- Python version 3.6 or above
- [SAM CLI](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install.html)
- Your choice of TypeScript IDE

**Installation**
Expand All @@ -28,7 +30,7 @@ pip3 install git+https://github.com/eduardomourar/cloudformation-cli-typescript-

Refer to the [CloudFormation CLI User Guide](https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html) for the [CloudFormation CLI](https://github.com/aws-cloudformation/cloudformation-cli) for usage instructions.

** Howto**
**Howto**

Example run:

Expand Down
10 changes: 10 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
globals: {
'ts-jest': {
diagnostics: false, // Necessary to avoid typeschecking error in decorators
}
},
testRegex: '\\.test.ts$',
};
Loading

0 comments on commit 19f5630

Please sign in to comment.