Skip to content

Commit

Permalink
build: generating docs and adding handler for build
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanSinko committed Oct 5, 2020
1 parent b5372cc commit 32007b4
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const project = new AwsCdkConstructLibrary({
"pretty-quick": "^3.0.2",
"npm-run-all": "^4.1.5",
},
cdkDependencies: ["@aws-cdk/core", "@aws-cdk/aws-kinesis"],
cdkDependencies: ["@aws-cdk/core"],
cdkTestDependencies: ["@aws-cdk/assert"],
eslint: false,
releaseWorkflow: true,
Expand Down
32 changes: 32 additions & 0 deletions API.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# API Reference

**Classes**

Name|Description
----|-----------
[SlackPipelineApproval](#jordansinko-the-slack-pipeline-approval-slackpipelineapproval)|*No description*



## class SlackPipelineApproval <a id="jordansinko-the-slack-pipeline-approval-slackpipelineapproval"></a>



__Implements__: [IConstruct](#constructs-iconstruct), [IConstruct](#aws-cdk-core-iconstruct), [IConstruct](#constructs-iconstruct), [IDependable](#aws-cdk-core-idependable)
__Extends__: [Construct](#aws-cdk-core-construct)

### Initializer




```ts
new SlackPipelineApproval(scope: Construct, id: string)
```

* **scope** (<code>[Construct](#aws-cdk-core-construct)</code>) *No description*
* **id** (<code>string</code>) *No description*




1 change: 1 addition & 0 deletions src/handler/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const handler = async () => `Hello, world!`;

0 comments on commit 32007b4

Please sign in to comment.