We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cddd60a commit a8694b9Copy full SHA for a8694b9
packages/@aws-cdk/aws-lambda-nodejs/lib/function.ts
@@ -144,7 +144,7 @@ function findLockFile(depsLockFilePath?: string): string {
144
]);
145
146
if (lockFiles.length === 0) {
147
- throw new Error('Cannot find a package lock file (`pnpm-lock.yaml`, `yarn.lock` or `package-lock.json`). Please specify it with `depsFileLockPath`.');
+ 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\`.`);
0 commit comments