Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ async function deploy () {
div++
}

const lambda = new AWS.Lambda({ region: 'us-east-1' })
const lambda = new AWS.Lambda({ region: options.region || 'us-east-1' })

// check if lambda exists
const exists = await lambda.getFunction({
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
"name": "elysia-lambda",
"author": "Jesse Daniel Mitchell",
"license": "MIT",
"version": "0.0.7",
"version": "0.0.8",
"repository": {
"type": "https+git",
"url": "https://github.com/TotalTechGeek/elysia-lambda"
"url": "https://github.com/rainstormai7/elysia-lambda.git"
},
"description": "A plugin for Elysia to deploy to AWS Lambda",
"module": "index.ts",
"type": "module",
"devDependencies": {},
"peerDependencies": {
"typescript": "^5.0.0"
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.322.0",
"@aws-sdk/client-lambda": "^3.511.0",
"adm-zip": "^0.5.10",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"deep-equal": "^2.2.1",
"elysia": "^0.4.13",
"inquirer": "^9.2.0",
"superagent": "^8.0.9",
"yaml": "^2.2.2"
"chalk": "^5.3.0",
"commander": "^12.0.0",
"deep-equal": "^2.2.3",
"elysia": "^0.8.17",
"inquirer": "^9.2.14",
"superagent": "^8.1.2",
"yaml": "^2.3.4"
},
"bin": {
"elysia-lambda": "./deploy.mjs"
Expand Down