Skip to content
This repository was archived by the owner on Aug 8, 2024. It is now read-only.

Commit 5ebedd9

Browse files
committed
fix travis npm publish
1 parent 59c66ff commit 5ebedd9

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
test/
22
node_modules/
3+
coverage
34

45
.editorconfig
56
.gitignore

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ script:
77
- npx codecov -f ./coverage/coverage-final.json
88
- yarn build
99
deploy:
10+
skip_cleanup: true
1011
provider: npm
1112
1213
api_key:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ See here: https://yarnpkg.com/en/docs/cli/link
359359
360360
361361
## Release History
362-
* 0.8.0
362+
* 0.8.1
363363
* fix: changed ProxyIntegrationEvent body type to be generic but defaults to unknown
364364
* fix: changed @types/aws-lambda from devDependency to dependency
365365
* **breaking**: error response objects (thrown or rejected) now need to set `statusCode` instead of `status` (consistent with response)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-lambda-router",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "AWS lambda router",
55
"main": "index.js",
66
"types": "index.d.ts",

yarn.lock

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,13 @@ atob@^2.1.1:
609609
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
610610
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
611611

612+
aws-lambda-router@^0.8.0:
613+
version "0.8.0"
614+
resolved "https://registry.yarnpkg.com/aws-lambda-router/-/aws-lambda-router-0.8.0.tgz#1f887b917777147ee3c247531c068955914ad142"
615+
integrity sha512-eXDHPj+jujzbtdQ+d7kxPJUOvxj1KeicAg3i5B973cJmfZJO6xyjujjMEO2kEaA1Vwk2v0XpfhyJk/BSEbesPA==
616+
dependencies:
617+
"@types/aws-lambda" "^8.10.40"
618+
612619
aws-sign2@~0.7.0:
613620
version "0.7.0"
614621
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
@@ -822,7 +829,7 @@ co@^4.6.0:
822829
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
823830
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
824831

825-
codecov@^3.6.1:
832+
codecov@^3.6.2:
826833
version "3.6.2"
827834
resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.6.2.tgz#9503533d744233f6864f8f3ead9435d285ed3f47"
828835
integrity sha512-i1VYZYY3M8Lodk/QRsIWYVimkuhl0oMSiM2itxbTbEIjB0PCSWP1cI7cscu5P0MayggoTl6I/jkXV2go8Ub8/Q==
@@ -3228,10 +3235,10 @@ tr46@^1.0.1:
32283235
dependencies:
32293236
punycode "^2.1.0"
32303237

3231-
ts-jest@24.3.0:
3232-
version "24.3.0"
3233-
resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.3.0.tgz#b97814e3eab359ea840a1ac112deae68aa440869"
3234-
integrity sha512-Hb94C/+QRIgjVZlJyiWwouYUF+siNJHJHknyspaOcZ+OQAIdFG/UrdQVXw/0B8Z3No34xkUXZJpOTy9alOWdVQ==
3238+
ts-jest@24.2.0:
3239+
version "24.2.0"
3240+
resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.2.0.tgz#7abca28c2b4b0a1fdd715cd667d65d047ea4e768"
3241+
integrity sha512-Yc+HLyldlIC9iIK8xEN7tV960Or56N49MDP7hubCZUeI7EbIOTsas6rXCMB4kQjLACJ7eDOF4xWEO5qumpKsag==
32353242
dependencies:
32363243
bs-logger "0.x"
32373244
buffer-from "1.x"

0 commit comments

Comments
 (0)