lambda-live-debugger 0.0.114 → 0.0.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/configuration/getConfigFromWizard.mjs +13 -0
- package/dist/extension/extension.zip +0 -0
- package/dist/extension/nodejs/node_modules/interceptor.js +764 -255
- package/dist/extension/nodejs/node_modules/interceptor.js.map +4 -4
- package/dist/lambdaConnection.mjs +2 -2
- package/dist/lldebugger.mjs +2 -3
- package/dist/logger.d.ts +28 -7
- package/dist/logger.mjs +46 -8
- package/package.json +4 -2
|
@@ -271,18 +271,31 @@ async function saveConfiguration(config) {
|
|
|
271
271
|
import { type LldConfigTs } from "lambda-live-debugger";
|
|
272
272
|
|
|
273
273
|
export default {
|
|
274
|
+
// Framework to use
|
|
274
275
|
framework: "${config.framework}",
|
|
276
|
+
// AWS CDK context
|
|
275
277
|
context: ${config.context ? JSON.stringify(config.context) : undefined},
|
|
278
|
+
// Serverless Framework stage
|
|
276
279
|
stage: "${config.stage}",
|
|
280
|
+
// Monorepo subfolder
|
|
277
281
|
subfolder: "${config.subfolder}",
|
|
282
|
+
// Filter by function name. You can use * as a wildcard
|
|
278
283
|
function: "${config.function}",
|
|
284
|
+
// AWS profile
|
|
279
285
|
profile: "${config.profile}",
|
|
286
|
+
// AWS region
|
|
280
287
|
region: "${config.region}",
|
|
288
|
+
// AWS role
|
|
281
289
|
role: "${config.role}",
|
|
290
|
+
// SAM environment
|
|
282
291
|
configEnv: "${config.configEnv}",
|
|
292
|
+
// Observable mode
|
|
283
293
|
observable: ${config.observable},
|
|
294
|
+
// Observable mode interval
|
|
284
295
|
interval: ${config.interval === defaultObservableInterval ? undefined : config.interval},
|
|
296
|
+
// Verbose logs
|
|
285
297
|
verbose: ${config.verbose},
|
|
298
|
+
// Modify Lambda function list or support custom framework
|
|
286
299
|
//getLambdas: async (foundLambdas) => {
|
|
287
300
|
// you can customize the list of lambdas here or create your own
|
|
288
301
|
// return foundLambdas;
|
|
Binary file
|