Skip to content

Commit

Permalink
update to 1.39.1
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Mar 19, 2019
1 parent 4c266ca commit 039199b
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 63 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ functions:
method: GET
```
> 💡 The Rust Lambda runtime requires a binary named `bootstrap`. This plugin renames the binary cargo builds to `bootstrap` for you before packaging. You do not need to do this manually in your Cargo configuration.
> 💡 The Rust Lambda runtime requires a binary named `bootstrap`. This plugin renames the binary cargo builds to `bootstrap` for you before packaging. You do **not** need to do this manually in your Cargo configuration.

## 🖍️ customize

Expand Down Expand Up @@ -82,7 +82,7 @@ functions:
## 🤸 usage
Every [flow that serverless provides](https://serverless.com/framework/docs/providers/aws/guide/workflow/) should be work out of the box.
Every [serverless workflow command](https://serverless.com/framework/docs/providers/aws/guide/workflow/) should work out of the box.
### invoke your lambdas locally
Expand All @@ -102,6 +102,11 @@ $ npx serverless deploy
$ npx serverless invoke -f hello -d '{"hello":"world"}'
```

### view your lambdas logs

```sh
$ npx serverless logs -f hello
```


## 🏗️ serverless templates
Expand Down
73 changes: 37 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"dependencies": {
"fs-copy-file-sync": "^1.1.1",
"fs-extra": "^7.0.1",
"serverless": "git://github.com/serverless/serverless.git#fe86fdee0f3bb07e0dbaee34888354e11b263c78",
"serverless": "^1.39.1",
"test": "^0.6.0"
},
"devDependencies": {
"eslint": "^5.14.0"
"eslint": "^5.15.3"
},
"files": [
"index.js",
Expand Down
44 changes: 22 additions & 22 deletions tests/test-func/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/test-func/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devDependencies": {
"serverless": "git://github.com/serverless/serverless.git#fe86fdee0f3bb07e0dbaee34888354e11b263c78",
"serverless": "1.39.1",
"serverless-rust": "file:../.."
}
}

0 comments on commit 039199b

Please sign in to comment.