Skip to content

Commit

Permalink
move index.js (lambda function) to root of project #128
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Feb 4, 2024
1 parent 2d65911 commit 279be1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lambda/index.js → index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require("env2")(".env");
const debug = require("./debug.js");
const debug = require("./lambda/debug.js");

exports.handler = function handler (event, context, callback) {
debug(event);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"coverage"
],
"files_to_deploy": [
"lambda/index.js",
"index.js",
"package.json",
"lambda/",
"lib/",
Expand Down

0 comments on commit 279be1b

Please sign in to comment.