Skip to content

Commit 039199b

Browse files
committed
update to 1.39.1
1 parent 4c266ca commit 039199b

File tree

5 files changed

+69
-63
lines changed

5 files changed

+69
-63
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ functions:
3939
method: GET
4040
```
4141
42-
> 💡 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.
42+
> 💡 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.
4343

4444
## 🖍️ customize
4545

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

105+
### view your lambdas logs
106+
107+
```sh
108+
$ npx serverless logs -f hello
109+
```
105110

106111

107112
## 🏗️ serverless templates

package-lock.json

Lines changed: 37 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"dependencies": {
2626
"fs-copy-file-sync": "^1.1.1",
2727
"fs-extra": "^7.0.1",
28-
"serverless": "git://github.com/serverless/serverless.git#fe86fdee0f3bb07e0dbaee34888354e11b263c78",
28+
"serverless": "^1.39.1",
2929
"test": "^0.6.0"
3030
},
3131
"devDependencies": {
32-
"eslint": "^5.14.0"
32+
"eslint": "^5.15.3"
3333
},
3434
"files": [
3535
"index.js",

tests/test-func/package-lock.json

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/test-func/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"devDependencies": {
3-
"serverless": "git://github.com/serverless/serverless.git#fe86fdee0f3bb07e0dbaee34888354e11b263c78",
3+
"serverless": "1.39.1",
44
"serverless-rust": "file:../.."
55
}
66
}

0 commit comments

Comments
 (0)