serverless-haskell 0.2.0 → 0.2.1
raw patch · 2 files changed
+5/−5 lines, 2 files
Files
- serverless-haskell.cabal +2/−2
- src/AWSLambda.hs +3/−3
serverless-haskell.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 71347bf6b2f435283ac10c52af2a1e535e06447a7f62ef695bbc6e958a8732f0+-- hash: be200d570fc2d5bda773a65233f7c2baff3c487cc022b7d2d035a850fcebe33a name: serverless-haskell-version: 0.2.0+version: 0.2.1 synopsis: Deploying Haskell code onto AWS Lambda using Serverless description: Utilities to help process the events from AWS Lambda when deployed with the serverless-haskell plugin. category: AWS, Cloud, Network
src/AWSLambda.hs view
@@ -35,12 +35,12 @@ * Use @sls deploy@ to deploy the executable to AWS Lambda. __Note__: @sls deploy function@ is not supported. - The `serverless-haskell` plugin will build the package using Stack and upload+ The @serverless-haskell@ plugin will build the package using Stack and upload it to AWS together with a JavaScript wrapper to pass the input and output from/to AWS Lambda. - You can test the function and see the invocation results with `sls invoke- myfunc`.+ You can test the function and see the invocation results with @sls invoke+ myfunc@. = Additional features