Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Lambda,
BuildV3,
PrepareCache,
getNodeVersion
getRuntimeNodeVersion

Check failure on line 10 in src/index.ts

View workflow job for this annotation

GitHub Actions / run

'"@vercel/build-utils"' has no exported member named 'getRuntimeNodeVersion'. Did you mean 'getNodeVersion'?
} from '@vercel/build-utils';
import {
getPhpFiles,
Expand Down Expand Up @@ -114,7 +114,7 @@
}

console.log('🐘 Creating lambda');
const nodeVersion = await getNodeVersion(workPath);
const nodeVersion = await getRuntimeNodeVersion(workPath);

const lambda = new Lambda({
files: {
Expand Down
Loading