From f63eba952e8b9519e2ecc28d7ff7aa006f521e05 Mon Sep 17 00:00:00 2001 From: Antonin CLAUZIER Date: Sat, 11 Nov 2023 14:13:23 +0400 Subject: [PATCH] Fixes output path for build command (#7026) --- packages/bun-lambda/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bun-lambda/README.md b/packages/bun-lambda/README.md index 87d4fbb534..2eda7644e6 100644 --- a/packages/bun-lambda/README.md +++ b/packages/bun-lambda/README.md @@ -58,7 +58,7 @@ export default { The final step is to upload your Bun handler. You can technically write the handler directly in the console if you wish, but if you want a full development environment, use the Bun toolkit. There are several ways you can choose to build and manage your artifacts, but follow these steps for a simple approach: -1. Run `bun build .[ts|js] --outfile /dist/handler.js` +1. Run `bun build .[ts|js] --outfile ./dist/handler.js` 2. Zip the `/dist` folder ### Step 3: Create the Lambda function on AWS