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: src/configuration.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -141,11 +141,11 @@ async function discoverLambdas() {
141
141
if(!lambdasListNew){
142
142
if(noFramework){
143
143
thrownewError(
144
-
`No framework was found, or Lambdas provided via ${configFileDefaultName} config file. If you are using monorepo, you should configure a subfolder via config/cli parameter or run the Lambda Live Debugger from a subfolder that contains the framework project.`
144
+
`No framework was found, or Lambdas provided via ${configFileDefaultName} config file. If you are using monorepo, you should configure a subfolder via config/cli parameter or run the Lambda Live Debugger from a subfolder that contains the framework project.`,
145
145
);
146
146
}else{
147
147
thrownewError(
148
-
`No Lambdas were provided via ${configFileDefaultName} config file, but some were found via the framework. Check the settings 'getLambdas' or remove it.`
148
+
`No Lambdas were provided via ${configFileDefaultName} config file, but some were found via the framework. Check the settings 'getLambdas' or remove it.`,
149
149
);
150
150
}
151
151
}
@@ -173,7 +173,7 @@ function saveDiscoveredLambdas(lambdasListNew: LambdaResource[]) {
0 commit comments