lambda-toolkit 1.1.0 → 2.0.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/{index.js → index.cjs} +1585 -2169
- package/dist/index.mjs +2261 -0
- package/package.json +33 -20
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ This project was created based on my personal experience after I have been worki
|
|
|
10
10
|
|
|
11
11
|
This project has no dependency other than the AWS SDKs. My goal is to always have the minimal number of dependencies, so commons functions in this code base, like `camelize`, `mean` or `splitBatches` were implemented instead of relying on external providers.
|
|
12
12
|
|
|
13
|
-
As for the AWS SDK dependencies, this code is intended to run on AWS Lambda environments and __I
|
|
13
|
+
As for the AWS SDK dependencies, this code is intended to run on AWS Lambda environments and __I strongly suggest__ that you don't include these packages when bundling your code for deploy, as they are all available at the AWS runtime. For example, at your `webpack.config.js`, include:
|
|
14
14
|
```js
|
|
15
15
|
{
|
|
16
16
|
...,
|