You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -240,7 +240,7 @@ For example, when the framework has only a list of JavaScript files, but you tra
240
240
getLambdas: async (foundLambdas, config) => {
241
241
if (foundLambdas) {
242
242
for (const lambda offoundLambdas) {
243
-
lambda.codePath=lambda.codePath
243
+
lambda.codePath=lambda.codePath
244
244
.replace("/dist/", "/src/")
245
245
.replace(".js", ".ts");
246
246
}
@@ -255,7 +255,7 @@ import { type EsBuildOptions, type LldConfigTs } from "lambda-live-debugger";
255
255
256
256
exportdefault {
257
257
...
258
-
getLambdas: async (foundLambdas, config) => {
258
+
getLambdas: async (foundLambdas, config) => {
259
259
if (foundLambdas) {
260
260
for (const lambda offoundLambdas) {
261
261
lambda.esBuildOptions= {
@@ -272,7 +272,7 @@ export default {
272
272
exportdefault {
273
273
//framework: <-- you do not need this line
274
274
...
275
-
getLambdas: async (foundLambdas, config) => {
275
+
getLambdas: async (foundLambdas, config) => {
276
276
return [
277
277
{
278
278
// function name as deployed on AWS
@@ -309,7 +309,9 @@ Check the [GitHub issues](https://github.com/ServerlessLife/lambda-live-debugger
309
309
310
310
## Missing Features
311
311
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.
0 commit comments