We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c274c2f commit 6f4aba8Copy full SHA for 6f4aba8
packages/@aws-cdk/aws-lambda-nodejs/lib/function.ts
@@ -147,7 +147,7 @@ function findLockFile(depsLockFilePath?: string): string {
147
throw new Error('Cannot find a package lock file (`pnpm-lock.yaml`, `yarn.lock` or `package-lock.json`). Please specify it with `depsLockFilePath`.');
148
}
149
if (lockFiles.length > 1) {
150
- throw new Error(`Multiple package lock files found: ${lockFiles.join(', ')}. Please specify the desired one with \`depsFileLockPath\`.`);
+ throw new Error(`Multiple package lock files found: ${lockFiles.join(', ')}. Please specify the desired one with \`depsLockFilePath\`.`);
151
152
153
return lockFiles[0];
0 commit comments