Skip to content
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.

Commit

Permalink
Use new AWS Lambda Node.js 8.10 runtime (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvondra committed Apr 3, 2018
1 parent 222f152 commit 9e83ce0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Expand Up @@ -4,7 +4,7 @@
"env",
{
"targets": {
"node": "6.10.3"
"node": "8.10.0"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -94,7 +94,7 @@ I do however trust AWS infrastructure and with the traffic pattern needed for a

## Development

Javascript sources are transpiled using webpack and Babel to the AWS supported Node.js 6.10 target. Transpiling and bundling is part of the serverless deployment workflow.
Javascript sources are transpiled using webpack and Babel to the AWS supported Node.js 8.10 target. Transpiling and bundling is part of the serverless deployment workflow.

The API is tested using blackbox integration tests against a fresh deployment on AWS. Simply run with `./test.sh` with AWS credentials configured. This will create a temporary stack in AWS, run the tests against the API and tear down the stack after completion.

Expand Down
2 changes: 1 addition & 1 deletion serverless.yml
Expand Up @@ -7,7 +7,7 @@ plugins:
provider:
name: aws
stage: ${opt:stage, 'prod'}
runtime: nodejs6.10
runtime: nodejs8.10
memorySize: 256
timeout: 10
environment:
Expand Down

0 comments on commit 9e83ce0

Please sign in to comment.