Skip to content

Commit bfccf54

Browse files
chore: Improve documentation
1 parent e8ec1cb commit bfccf54

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ For example, when the framework has only a list of JavaScript files, but you tra
240240
getLambdas: async (foundLambdas, config) => {
241241
if (foundLambdas) {
242242
for (const lambda of foundLambdas) {
243-
lambda.codePath = lambda.codePath
243+
lambda.codePath = lambda.codePath
244244
.replace("/dist/", "/src/")
245245
.replace(".js", ".ts");
246246
}
@@ -255,7 +255,7 @@ import { type EsBuildOptions, type LldConfigTs } from "lambda-live-debugger";
255255

256256
export default {
257257
...
258-
getLambdas: async (foundLambdas, config) => {
258+
getLambdas: async (foundLambdas, config) => {
259259
if (foundLambdas) {
260260
for (const lambda of foundLambdas) {
261261
lambda.esBuildOptions = {
@@ -272,7 +272,7 @@ export default {
272272
export default {
273273
//framework: <-- you do not need this line
274274
...
275-
getLambdas: async (foundLambdas, config) => {
275+
getLambdas: async (foundLambdas, config) => {
276276
return [
277277
{
278278
// function name as deployed on AWS
@@ -309,7 +309,9 @@ Check the [GitHub issues](https://github.com/ServerlessLife/lambda-live-debugger
309309
310310
## Missing Features
311311
312-
Check the [GitHub issues](https://github.com/ServerlessLife/lambda-live-debugger/issues). The biggest missing feature right now is MFA authentication and more Terraform configurations.
312+
For the current list of missing features, please refer to the [GitHub issues](https://github.com/ServerlessLife/lambda-live-debugger/issues) page. The most significant missing features at the moment are MFA authentication and additional Terraform configurations.
313+
314+
If you have a new feature idea, please create and issue.
313315
314316
## Reporting an Issue
315317

0 commit comments

Comments
 (0)