Skip to content
This repository was archived by the owner on Nov 13, 2021. It is now read-only.

Commit 3b9e94b

Browse files
committed
docs(README): update README
1 parent 439eea7 commit 3b9e94b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ _Table of contents:_
1111
- [Why?](#why)
1212
- [Roadmap](#roadmap)
1313
- [How to make changes and test locally](#how-to-make-changes-and-test-locally)
14+
- [WTF happened to the rollup version?](#wtf-happened-to-the-rollup-version)
1415
- [Thanks](#thanks)
1516

1617
## Usage example
@@ -54,10 +55,11 @@ export function handler(event) {
5455
## Features
5556

5657
- fast, [no-docker](https://github.com/aws/aws-cdk/issues/9120) CDK construct
57-
- lambda output respects original files structure and node_modules (no inlining)
5858
- lambda output only contains the necessary files, no README, tests, ...
5959
- bundling happens in temporary directories, it never writes in your project directory
6060
- source map support
61+
- TypeScript support (⚠️ Beta, do provide feedback in issues!)
62+
- Babel support (preset-env)
6163

6264
## Why?
6365

@@ -107,6 +109,10 @@ yarn link aws-lambda-nodejs-webpack
107109
# cdk commands will now use your local aws-lambda-nodejs-webpack
108110
```
109111

112+
## WTF happened to the rollup version?
113+
114+
In case you starred this project early on, it was previously using [rollup.js](https://rollupjs.org/) to build lambdas. After hitting roadblocks along the way, for example rollup cannot handle well circular dependencies well, I decided to stop trying to use rollup. Rollup is great to build libraries, but not so great to build web applications. And lambdas are closer to web applications bundling than libraries.
115+
110116
## Thanks
111117

112118
- the CDK team for this awesome project

0 commit comments

Comments
 (0)